Hash Table, N=11, NOT 10
Given input:
1198, 644635, 71, 8421, 34, 47
and a hash function h(x) = x mod 11 (NOT 10), show the resulting:
a) separate chaining hash table
b) hash table - linear probing
c) hash table - quadratic probing
d) hash table - second hash function h(x) = 7 - x mod 7
You may combine (b)-(d) into one table with columns for each.