For double hashing, if there is a collision with the first hash function, you'd use the second hash function, but what if there is still a collision? For example, let's say a hash table is size 15 and the hash function is (key + 3) % 15
and the second hash function is ((key % 8) / 3) + 2
. Let's say "insert 59" goes to index 2 by the first hash function but there already is a key there. The second hash function would bring it to 3 but let's say there already is a value there too. Where would 59 be inserted on the hash table and why? Thanks
I specifically want to use double hashing, not chained hashing or linear probing.
This is implementation specific, but typically you'd use a linked list or other flexible data structure to managed colliding data.
From the java.util.HashMap javadoc: