1.

What is the time complexity of the search function in a hash table using a binary tree?(a) O(1)(b) O(n)(c) O(log n)(d) O(n log n)Question is from Hash Tables in division Hash Tables of Data Structures & Algorithms II had been asked this question in unit test.

Answer» RIGHT CHOICE is (a) O(1)

BEST EXPLANATION: Time complexity of search function in a hash table is O(1). Condition is that the number of COLLISIONS should be low.


Discussion

No Comment Found

Related InterviewSolutions