vote up 2 vote down star

Best way to implement a

  • dictionary (is their any DS better than Trie for Dictionary)
  • thesaurus (no idea, as match is made on meanings of the words, similar meanings)
  • spell checker (something better than a hash map), if possible with correct spelling recommendations.

when asked in an 1-hr interviews, are we expected to write a c/c++ code, for the algorithm.

flag

2  
speall checker? surely not? – Mitch Wheat Oct 6 at 8:23
@Mitch: why not? After all, the Apache spell-checking module is called mod_speling. – Konrad Rudolph Oct 6 at 8:24
...and in the HTTP specs referrer is spelled as referer (and must therefore be spelled wrong in all implementations using this header). – Lucero Oct 6 at 8:34
Sorry for ruining the joke, if it was intentional. – unwind Oct 6 at 10:24

5 Answers

vote up 4 vote down

See this for a 21-line Python 2.5 spelling corrector and a bit of background.

link|flag
Wow great, there is a facebook puzzle I struggled so much with: facebook.com/careers/puzzles.php#/… that would be just trivial now... – Matthieu M. Oct 6 at 17:56
vote up 1 vote down

Also check out the Bloom filter.

link|flag
You've been a user for a year and haven't picked a name yet?? – Ether Nov 1 at 6:07
vote up 1 vote down

I can see no better data structure than a trie for the dictionary and the thesaurus. Both can be fitted in one structure if needed with one link in the node pointing to the meaning of the word (dictionary) and one to synonyms (thesaurus). It can even offer some form of autocompletion (when there's only one link in the node).

Spelling corrector is a bit trickier - since one has to map fals input to some kind of correct input. You can take this link as a start: http://en.wikipedia.org/wiki/Spell_checker. At the end you'll find links to papers about different algorithms. According to the wikipedia article, this paper describes the most successfull algorithm: Andrew Golding and Dan Roth's "Winnow-based spelling correction algorithm"

link|flag
vote up 0 vote down

For a dictionary I would use the std::map (calling Dictionary in the .Net framework) collection with the word as key and a custom object (with all information about the word + the definition) as value.

For a thesaurus the best structure is a tree where each node is a section and where each branch finished with an object which contains all information about what you have to display.

link|flag
vote up 0 vote down

In all three cases, you can construct a BK-Tree from your word set. BK-Trees let you find all words within a given edit distance of the entered word. See my blog post on BK-Trees for an explanation of how they work.

A dictionary and spell checker are more or less identical - the dictionary simply needs to provide definitions along with the words. For a thesaurus, words are clustered into 'synsets' - synonym sets - with all the elements inserted into the BK-Tree. When someone looks up one word in the synset, you display all the other ones as alternatives. A word can appear in multiple synsets, so you need to ensure your BK-Tree nodes can handle multiple values for a given key.

link|flag

Your Answer

Get an OpenID
or

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