Question
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
and thank you in advance
Step 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