Question 16
A hash table with 8 slots (indexed to ) uses open addressing with linear probing ( ). After inserting 5 keys, the current state of the table is shown below:
Probe Operation: A probe operation is a single check of a hash table index. Finding a key at the first checked index requires 1 probe. If the key is found after checking three indices, it requires 3 probes. Assuming each of the 5 keys currently in the table is searched for exactly once, what is the total number of probe operations required to complete all 5 successful searches?