What is the worst case time complexity of the insertion in the hash tree?
What is the worst case time complexity of the insertion in the hash tree? Correct Answer O(logk(n))
To insert a record in the hash tree the key is compressed and hashed to get the slot for the entry. So, a hash tree with branching factor k takes O(logk(n)) for insertion in worst case.