InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by collisions in a hash table? Explain the ways to avoid it. |
|
Answer» Hash table collisions are typically caused when two keys have the same index. Collisions, thus, result in a problem because two ELEMENTS cannot share the same slot in an array. The following methods can be used to avoid such hash collisions: |
|