Skip to content

kakhilreddy/AutoSuggest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AutoSuggest

C Program which uses Trie Data Structure to efficiently suggest similar words based on user input. The input dictionary file is taken from here.

In the console, the user should first specify the number of queries he chooses to enter. Later on, for every query the user should input a word to the program (with no special characters embedded). 1

The program then builds a trie data structure from the input dictionary and queries it to find similar words.

2

If the construction of Trie is not considered for performance calculations, then the program suggests all the similar words in linear time proportional to the length of the input query string.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages