How do I make a word suggestion system in search engine like Google's "did you mean ... " ?

Preferably using the vector space model method. I have googled it but didn't find a solution.

link|improve this question
1  
Why would we e-mail you instead of using this site as intended and posting an answer here? – ceejayoz Oct 31 '09 at 9:40
1  
feedback

3 Answers

Have a look at the example from Peter Norvig (Director of Research at Google).

link|improve this answer
1  
He gave an overview of this at DevDays its very interesting. – Toby Allen Oct 31 '09 at 10:36
feedback

The Lucene search engine has "did you mean" support, and it's open source, so you can take the code and see how it works or reuse it in your project. Actually, it's probably worth using the entire engine instead of reinventing the wheel by creating a new search engine from scratch.

link|improve this answer
feedback

I implemented this one on my site.You need to know about ajax and server side code to retrieve your data.....

link|improve this answer
I'm pretty sure he's asking how to code the algorithm that suggests other queries. – ceejayoz Oct 31 '09 at 11:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.