Is there an implementation of the java Map interface which utilizes separate chaining as collision resolution. By reading the javadocs for HashMap and HashTable I came to the conclusion that what the implementation does is basically replace the value and essentially doesn't employ any collision resolution?
|
|
You got it wrong: it uses a linked list of entries for each bucket. When putting a value in the map, the map starts by calling If you want to store multiple values for a given key, then use a |
|||
|
|
|
It does have collision resolution, but that's because two different keys could plausibly end up in the same bucket after hashing. If you want to store more than one value for a single key, you can always use |
|||||||
|