I understand there is a hashing technique is applying to key to store the value in the memory address. But I didn't understand how the collision is happening here? Which hashing algorithm Java is used to create a memory space? Is it MD5? Am new to Java.. Please explain...
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
The basic idea of
An image, courtesy of Wikipedia:
In this case,
Now, if you tried to look up a telephone number of Sandra Dee, you would hash her name, mod it by 256, and look into the bucket 152. There you'd find John Smith. That's no Sandra, look further ... aha, there's Sandra chained after John. |
|||||||||||||
|
|
Here Readings: This is somewhat more clearer explanation of How HashMap works? |
|||||||||
|
|
As default implementation hashCode function in Object class return the memory address as the hash which is used as key in HashTable & HashMap. |
|||||||||||
|
