vote up 1 vote down star

Hello, i have some problem. i need to know how to make word suggestions in search engine like google "did you mean ... "

If you can, using vector space model method. i have searched in goggle but i still don't get the answer.

Please help me, thanks you before..

flag
1  
Why would we e-mail you instead of using this site as intended and posting an answer here? – ceejayoz Oct 31 at 9:40
1  
duplicate: stackoverflow.com/questions/307291/… also check out norvig.com/spell-correct.html – Nick D Oct 31 at 10:16

3 Answers

vote up 1 vote down

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|flag
vote up -1 vote down

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

link|flag
I'm pretty sure he's asking how to code the algorithm that suggests other queries. – ceejayoz Oct 31 at 11:21
vote up 2 vote down

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

link|flag
1  
He gave an overview of this at DevDays its very interesting. – Toby Allen Oct 31 at 10:36

Your Answer

Get an OpenID
or

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