Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Question 4 (20 marks) Consider a hash table of size 11 with hash function h(x) = x mod 11. Draw the table that results after

image text in transcribed

Question 4 (20 marks) 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.5 i2) mod 11 where i = 1, 2, 3

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts

Authors: David Kroenke

4th Edition

0136086535, 9780136086536

More Books

Students also viewed these Databases questions

Question

How wide are Salary Structure Ranges?

Answered: 1 week ago