Write a c++ program to maintain a hash table of integer keys using the hash func
ID: 3621946 • Letter: W
Question
Write a c++ program to maintain a hash table of integer keys using the hash function h(k)=k mod m. The following paramaters of your program should be set by the user:
Initially, the user decides:
After that, a hash table is initialized, and the user gets to choose whether to:
If the user chooses quadratic probing, you may assume that the user will never select deletion, ie, you do not have to implement the deletion functionality for the case of quadratic probing. If a key the user wants to delete is not contained in the hash table, the program is supposed to return a corresponding error message.
Explanation / Answer
Dear Here is the code #include #include using namespace std; int hashfunction(char *, int); void hashTable (int &, char * ); const int HTsize = 13; int main() { int num[10] = {70, 32, 86, 14, 20, 7, 15, 10, 13, 5}; for (int i = 0; i < 10; i++) { coutRelated Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.