Arrangement and make sure no error and run smoothly by using Phyton Software.
Implement all the functions of a dictionary (ADT) using hashing.Data: Set of (key, value) pairs. Keys are mapped to values. Keys must be comparable. Keys must be unique.Standard Operations: Insert(key, value) Find(key), Delete(key)====== CPE 204L Dictionary =====[1] : Insert Word[2] : Find Word[3] : Delete Word[4] : Exit============================Enter your choice : 1Enter word: prettyEnter meaning: beautifulPretty is successfully inserted into dictionary====== CPE 204L Dictionary =====[1] : Insert Word[2] : Find Word[3] : Delete Word[4] : Exit
These is the sample output of the program:
============================Enter your choice : 1Enter word: prettyEnter meaning: beautifulDuplicate Word! Pretty is not successfully inserted into dictionary.====== CPE 204L Dictionary =====[1] : Insert Word[2] : Find Word[3] : Delete Word[4] : Exit============================Enter your choice : 2Enter word: prettyWord is Present in Dictionarypretty = beautiful
====== CPE 204L Dictionary =====[1] : Insert Word[2] : Find Word[3] : Delete Word[4] : Exit============================Enter your choice : 3Enter word: prettyWord is successfully deleted====== CPE 204L Dictionary =====[1] : Insert Word[2] : Find Word[3] : Delete Word[4] : Exit============================Enter your choice : 2Enter word: prettyWord not Found.====== CPE 204L Dictionary =====[1] : Insert Word[2] : Find Word[3] : Delete Word[4] : Exit============================Enter your choice : 4Thank you for using the dictionary program.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here