Automatic spell checking of words in a text - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T19:49:39Z http://stackoverflow.com/feeds/question/334426 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/334426/automatic-spell-checking-of-words-in-a-text 2 Automatic spell checking of words in a text Aaron Digulla 2008-12-02T15:54:40Z 2008-12-03T12:05:51Z <p>[EDIT]In Short: How would you write an automatic spell checker? The idea is that the checker builds a list of words from a known good source (a dictionary) and automatically adds new words when they are used often enough. Words which haven't been used a while should be phased out. So if I delete part of a scene which contains "Mungrohyperiofier", the checker should remember it for a while and when I type "Mung&lt;Ctrl+Space&gt;" in another scene, it should offer it again. If I don't use the word for, say, a few days, it should forget about it.</p> <p>At the same time, I'd like to avoid adding typos to the dictionary.[/EDIT]</p> <p>I want to write a text editor for SciFi stories. The editor should offer word completion for any word used anywhere in the current story. It will only offer a single scene of the story for editing (so you can easily move scenes around).</p> <p>This means I have three sets:</p> <ol> <li>The set of all words in all other scenes</li> <li>The set of word in the current scene <em>before</em> I started editing it</li> <li>The set of words in the current editor</li> </ol> <p>I need to store the sets somewhere as it would be too expensive to build the list from scratch every time. I think a simple plain text file with one-word-per-line is enough for that.</p> <p>As the user edits the scene, we have these situations:</p> <ol> <li>She deletes a word. This word is not used anywhere else in the current scene.</li> <li>She types a word which is new</li> <li>She types a word which already exists</li> <li>She types a word which already exists but makes a typo</li> <li>She corrects a typo in a word which is in set #2.</li> <li>She corrects a typo in a word which is in set #1 (i.e. the typo is elsewhere, too).</li> <li>She deletes a word which she plans to use again. After the deletion, the word is no longer in the sets #1 and #3, though.</li> </ol> <p>The obvious strategy would be to rebuilt the word sets when a scene is saved and build the set #1 from a word-list file per scene.</p> <p>So my question is: Is there a clever strategy to keep words which aren't used anywhere anymore but still be able to phase out typos? If possible, this strategy should work in the background without the user even noticing what is going on (i.e. I want to avoid to have to grab the mouse to select "add word to dictionary" from the menu).</p> <p>[EDIT] Based on a comment from <a href="http://stackoverflow.com/users/34329/grieve">grieve</a></p> http://stackoverflow.com/questions/334426/automatic-spell-checking-of-words-in-a-text/334458#334458 0 Answer by leppie for Automatic spell checking of words in a text leppie 2008-12-02T16:00:31Z 2008-12-02T16:00:31Z <p>The structure you should use is a trie. Tail/suffix compression will help with memory. You can use a pseudo reference counting GC for keeping track of usage.</p> <p>For the actual nodes, you would probably need no more than a 32-bit integer, 21-bits for unicode, and the rest for various other tags and information.</p> http://stackoverflow.com/questions/334426/automatic-spell-checking-of-words-in-a-text/335496#335496 0 Answer by siukurnin for Automatic spell checking of words in a text siukurnin 2008-12-02T21:20:52Z 2008-12-02T21:20:52Z <p>Reminds me of what I have been told about garbage collecting in modern LISP implementations :</p> <p>data when created is put in "pool 1",</p> <p>when there is a need to garbage collect the garbage collector look in pool 1 for unused entries and remove them.</p> <p>Then any remaining entry is moved to pool 2.</p> <p>Pool 2 is examined only when there is a need to more memory than pool 1 can release.</p> <p>Data from pool 2 that survive a garbage collection is put in pool 3 and ... so on.</p> <p>The idea is to put dynamically the data in a pool corresponding to its lifetime...</p> http://stackoverflow.com/questions/334426/automatic-spell-checking-of-words-in-a-text/336529#336529 1 Answer by Yuval F for Automatic spell checking of words in a text Yuval F 2008-12-03T08:49:53Z 2008-12-03T08:49:53Z <p>So you want to write a spelling checker. Here's <a href="http://norvig.com/spell-correct.html" rel="nofollow">Peter Norvig's paper about writing a spelling corrector</a>. It describes a simple and robust spelling corrector. You can use the already-written part of the book, plus a reference list (say from a free dictionary) for the language model. I would also go to existing open-source spelling checkers, such as <a href="http://aspell.net/" rel="nofollow">aspell</a> and <a href="http://hunspell.sourceforge.net/" rel="nofollow">hunspell</a>, to get some ideas.</p>