top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is hash-collision in a hash table and how was it handled in Java?

–1 vote
423 views
What is hash-collision in a hash table and how was it handled in Java?
posted Aug 9, 2018 by anonymous

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
+1 vote

This was asked today in interview any pointer.

"Design a unique hash function for every tweet in Twitter"

+1 vote

Example
Map data = new HashMap();
data.put("a","America");
data.put("a","Africa");
data.put("b","Bangladesh");

Need to have both "America" and "Africa" as value against key "a". Is there any mechanism to achieve this scenario.

...