Re: Fastest Way to Check Word in Dictionary
- Posted by bernie Oct 27, 2008
- 1278 views
euphoric said...
What's the fastest way to check if a word is in a dictionary? (I need a function for this, if anybody's got one.)
Thanks!
It would probably depend on the size of dictionary.
- small: then use binary search.
- medium: use maps or database.e
- large: use odbc to large database.