What is the data structure used for search suggestions like Google Suggest. Does it all depend on the application? Would be helpful someone give me a link to good reference!
Asked
Active
Viewed 1,586 times
2 Answers
4
Consider a Trie. Here's a discussion about good implementations. This book will give more in-depth coverage.
But this approach assumes that what has already been typed is spelled correctly. If that is not a reasonable assumption, you will need to do something more sophisticated.

Community
- 1
- 1

Dilum Ranatunga
- 13,254
- 3
- 41
- 52