What is the worst-case complexity of dynamic hash where instead of chain-hashing there will be an AVL tree in each array element of the table?
If the hash-table wasn't dynamic, the WC complexity would be O(logn) for insert, find and delete. But how would the dynamic hash-table affect these complexities?