Question: Problems ( 2 0 points ) Problem 1 : Hash Tables. ( a ) A hash code is using polynomial accumulation as follows h 1

Problems
(20 points) Problem 1: Hash Tables.
(a) A hash code is using polynomial accumulation as follows h1(x)=-24+8x-12x2+
4x3-6x4+2x5. Use Horner's method to evaluate h1(-2).
(b)(5 points) Draw the 11-entry hash table that results from using the hash function
h(i)=(3i+5)mod11, to hash the keys 12,44,13,88,23,94,11,39,20,16,5,
assuming collisions are handled by chaining.
(c)(5 points) Repeat part (b) but now resolve collisions using linear probing.
(d)(5 points) Repeat part (b) but now resolve collisions using double hashing where the
secondary hash function is defined as h'(k)=7-(kmod7).
Problems ( 2 0 points ) Problem 1 : Hash Tables.

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 Programming Questions!