InterviewSolution
Saved Bookmarks
| 1. |
What is simple uniform hashing?(a) Every element has equal probability of hashing into any of the slots(b) A weighted probabilistic method is used to hash elements into the slots(c) Elements has Random probability of hashing into array slots(d) Elements are hashed based on priorityQuery is from Hash Tables topic in section Hash Tables of Data Structures & Algorithms IThis question was addressed to me by my college professor while I was bunking the class. |
|
Answer» The correct answer is (a) EVERY element has equal probability of hashing into any of the slots |
|