InterviewSolution
Saved Bookmarks
| 1. |
Auto complete and spell checkers can be implemented efficiently using the trie.(a) True(b) FalseEnquiry is from Trie in portion Trie of Data Structures & Algorithms IThis question was posed to me during an interview for a job. |
|
Answer» CORRECT answer is (a) True Explanation: TRIE PROVIDES fast searching and storing of the words. And tries STORES words in lexicographical order so, trie is the efficient data structure for implementation of spell checkers and AUTO complete. |
|