Using closed hashing and resolving collisions with
double hashing using hash functions h1 and h2 below, and given a table size
of 13, show the hash table after the eight keys below have been
inserted. Function reverse(k) reverses the decimal digits of k,
so reverse(73)=37, reverse(7)=7. Show your work.
h1(k) = k mod 13 h2(k) = reverse(k+1) mod 11
keys: 2, 8, 31, 20, 19, 18, 53, 27.