Answered step by step
Verified Expert Solution
Question
1 Approved Answer
undefined Consider a hash table of size 11 with hash function h(x) = x mod 11. Draw the table that results after inserting, in the
undefined
Consider a hash table of size 11 with hash function h(x) = x mod 11. Draw the table that results after inserting, in the given order, the following values: 76, 67, 92, 51, 87, 80, 108, 95, 91 for each of the three scenarios below: a) When collisions are handled by separate chaining; (5 marks) b) When collisions are handled by linear probing; (5 marks) c) When collisions are handled by double hashing using a second hash function h'(x) = (x mod 10)+1. Hint, the overall (combined) hash function is H(x) = (h(x) + i X h'(x)) mod 11, where i = 0, 1, 2, 3, ... (5 marks) d) When collisions are handled by quadratic probing with a quadratic probe function h'(x, i) = (h(x) + 0.5 i +0.5i2) mod 11 where i = 1,2,3Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started