/autoComplete-and-dictionary

use of trie to amke a autocomplete system then using the results to find its meaning from a dictionary

Primary LanguageC++

autoComplete-and-dictionary

use of trie to amke a autocomplete system then using the results to find its meaning from a dictionary

trie gives the suggestion what the word may be and all the suggestions get stored in a vector of type string and user enter the index of the word to be searched and the word corresponding to that index get searched in the dictionary ad the meaning is displayed.