InterviewSolution
Saved Bookmarks
| 1. |
What is the time complexity of the delete function in the 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 section Hash Tables of Data Structures & Algorithms II got this question in an interview. |
|
Answer» The correct choice is (a) O(1) |
|