Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Re: Spell Check Logic

by robobunny (Friar)
on Jul 31, 2002 at 20:28 UTC ( [id://186596]=note: print w/replies, xml ) Need Help??


in reply to Re: Spell Check Logic
in thread Spell Check Logic

you could speed this up a bit by maintaining a list of the words themselves in a separate hash, and checking that before you calculate the phonetic code (step 2). that way, you only have to calculate the code for words that are not in the list. of course, that only helps if most words are spelled correctly :)

Replies are listed 'Best First'.
Re: Re: Re: Spell Check Logic
by dree (Monsignor) on Jul 31, 2002 at 21:31 UTC
    You are right! :)

    But an hash (DB_File) with 2/3 millions words+phonetic codes is around 150+Mb.
    So to gain some speed-up you have to twice the database: one that has keys as phonetic codes and the second that has keys as correct words.
    And this is not always a good thing.

    But in this particulary case, with only 100.000+ words, your suggestion is ok :)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://186596]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (2)
As of 2024-04-26 05:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found