Given the input {3810, 8832, 8653, 2863, 3580, 8440,
1941, 4290, 8805, 7400}
and a hash function h(x) = x mod 13,
show the resulting separate chaining table.
Repeat #4 using open addressing with linear probing.
Repeat #4 using open addressing with quadratic probing.
Repeat #4 using open addressing with
double hashing where the second hash function
is 11 - (x mod 11).