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
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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. |
|||||||||||
|
