1.

What is the time complexity of delete function in the hash table using a doubly linked list?(a) O(1)(b) O(n)(c) O(log n)(d) O(n log n)This key question is from Hash Tables in portion Hash Tables of Data Structures & Algorithms IThis question was addressed to me during an online exam.

Answer»

Right OPTION is (a) O(1)

The best EXPLANATION: Time complexity of delete function in a HASH table is O(1). Condition is that the hash function should be such that the number of collisions should be LOW.



Discussion

No Comment Found

Related InterviewSolutions