I have a hash table of size 8 where I want to insert the values (0, 1, 8, 9, 5, 33).
I tried it with hashing which has collision then I tried the double hashing algorithm but the collision still occurs as follows:
Hashing = H1(k) = k % 8
Double Hashing = H2(k) = M - (k % M)
H1(0) = 0 % 8 = 0
H1(1) = 1 % 8 = 1
H1(8) = 8 % 8 = 0 -----> Needs double hashing ----> 7-(8 % 7)=7-1=6 (we forward 6 steps from the current position which is 0 and it will become 6).
H1(9) = 9 % 8 = 1----> Needs double hashing ---> 7 - (9%7)=7-2=5(we forward 5 steps from the current position which is 1 and it will become 6 again).
Now I am stuck here and I dont know what to do.
Note: I do not want to use any other method, I want to use only double hashing.
Any help is appreciated in advance.
You must use the double hashing algorithm as intended.
As mentioned in this very nice article:
And the given example is (in your case):
Additional References:
Bonus: