InterviewSolution
Saved Bookmarks
| 1. |
What Is Hash-collision In Hashtable? How Was It Handled In Java? |
|
Answer» In Hashtable , if two different KEYS have the same HASH value then it leads to hash -collision. A BUCKET of type LINKED LIST used to hold the different keys of same hash value. In Hashtable , if two different keys have the same hash value then it leads to hash -collision. A bucket of type linked list used to hold the different keys of same hash value. |
|