Dictionary using linked list of list in c++ Data Structures
take input from the user as a word and its possible meanings and Add them to the Dictionary as Word Object
Current file can be found in project folder as wordlist.txt the file contains comma seperated words and their meaning First Word of each line is Term or Word and remaining words in the same line are the meanings or definations of the first word
file can be found in the project folder as jsonfile.json
the user types a word if the word is found in the Dictionary then user can see all the definitions/ meanings of the word
All the words/meanings/definitions of the dictionary are converted to upper case before storing or loading and if a user wants to search a particular word's meaning,that word is also converted to same case.In this way searching something from dictionary will not be case sensitive any more.