Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

hello everyone, can anyone help with this question please, i tried to solve it but i'm facing some troubles? I need it as soon as

hello everyone, can anyone help with this question please, i tried to solve it but i'm facing some troubles?

I need it as soon as possible please

Use the class hashT as described in the section, Hashing: Implementation Using Quadratic Probing, which uses quadratic probing to resolve collision, to create a hash table to keep track of each states information. Use the states name as the key to determine the hash address. You may assume that a states name is a string of no more than 15 characters. Test your program by searching for and removing certain states from the hash table. You may use the following hash function to determine the hash address of an item: int hashFunc(string name) { int i, sum; int len; i = 0; sum = 0; len = name.length(); for (int k = 0; k < 15 - len; k++) name = name + ' '; //increase the length of the name //to 15 characters for (int k = 0; k < 5; k++) { sum = sum + static_cast(name[i]) * 128 * 128 + static_cast(name[i + 1]) * 128 + static_cast(name[i + 2]); i = i + 3; } return sum % HTSize; }

and thank you in advance

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

More Books

Students also viewed these Databases questions

Question

2 What are the advantages and disadvantages of job evaluation?

Answered: 1 week ago

Question

Question What are the requirements for a safe harbor 401(k) plan?30

Answered: 1 week ago