InterviewSolution
Saved Bookmarks
| 1. |
What is the worst case search time of a hashing using separate chaining algorithm?(a) O(N log N)(b) O(N)(c) O(N^2)(d) O(N^3)The above asked question is from Hash Tables topic in portion Hash Tables of Data Structures & Algorithms II got this question in unit test. |
|
Answer» RIGHT answer is (b) O(N) For explanation: The worst CASE search time of SEPARATE chaining algorithm using linked lists is mathematically FOUND to be O(N). |
|