Question: 2. Assume a Hash table has 9 slots and the hash function h(k) = k mod 9 is used to hash keys 6, 17, 16,

 2. Assume a Hash table has 9 slots and the hash

2. Assume a Hash table has 9 slots and the hash function h(k) = k mod 9 is used to hash keys 6, 17, 16, 7 and 10 in the table. We use collision resolution by open addressing. The function for collision resolution is h'(k, i) = (h(k)+i) mod 9 for i E {1, 2, ..., m-1}. Note that for the first collision i = 1, for the 2nd collision i = 2 etc. (a) Show the hash table obtained after inserting all 5 keys. (b) Under the assumption of simple uniform hashing, calculate expected number of steps a successful search takes. To answer this question, you have to find the number of probes for each key in the table. Then you add these values and average them. (c) Under the assumption of simple uniform hashing, calculate expected number of steps an unsuc- cessful search takes. To answer this question you don't need a key. Why? Because the key could be anything other than those in the table and there are too many keys to consider. Then how would you solve this problem? You have to look at each location of the table and determine if a probe is made at that location, how many comparison(s) are necessary to determine that the key is not at that location. Do this for all table locations, add the numbers and compute average

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!