Answered step by step
Verified Expert Solution
Question
1 Approved Answer
this project, you will maintain the information of a dictionary usingHashing. Your program will read the words and their meanings ( synonyms ) from a
this project, you will maintain the information of a dictionary usingHashing. Your program will read the words and their meaningssynonyms from a file named words.txt As well, the user should beable also to enter new words and their meanings into the program.Please use the following format for inputsWord:Meaning#Meaning#MeaningExample:good:fine#excellent#greatNote that each word will consist of max of three synonyms only.You will have to create a hash table to store the words and use wordsas the keys. You should implement hashing in two different methodsto resolve collisions using openaddressing and double hashing andgenerate different hash tables each using the different methods.The following options should be available for the user. For each option,you should provide the related information for both hash tables youhave created: Print hashed tables including empty spots Print out table size and the load factor Print out the used hash functions Insert a new record to hash table insertion will be done onboth hash tables Search for a specific word specify which table to search in Delete a specific word from both tables Compare between the two methods in terms of number ofcollisions occurred. Here you have to print the number ofcollisions occurred if happened once every new word isinserted Save hash table back to a file named savedwords.txt of thedouble hashing
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