InterviewSolution
Saved Bookmarks
| 1. |
What is the load factor for an open addressing technique?(a) 1(b) 0.5(c) 1.5(d) 0I want to ask this question from Hash Tables topic in section Hash Tables of Data Structures & Algorithms IThis question was posed to me during an interview. |
|
Answer» RIGHT answer is (b) 0.5 The best EXPLANATION: The load factor for an OPEN addressing TECHNIQUE should be 0.5. For separate CHAINING technique, the load factor is 1. |
|