I'm wondering because I need to have have a function that is disgustingly fast at checking if a word is in a dictionary list - I'm considering leaving the dictionary as a large string and running regex against instead. This needs to be absurdly fast. So I just need a basic overview of how python handles checking if a string is in a list of strings and if its beyond-reasonable fast.
|
If you want a blazingly fast membership test, then a list is the wrong data structure. Take a look at the implementation of Use a set instead. Sets are implemented internally by a hash table, so looking up an object involves computing its hash and then scanning a few table entries (usually just one). For the particular case of looking up a string, see |
|||||||||||
|
|
A set of strings will have O(1) lookup time: effectively constant regardless of the size of the set. Making a set from your list of strings is easy:
|
|||||||||||||||||||
|
|
If you need real fast checking, use a
A set is faster because it uses a hash-algorithm, instead of a direct search approach. |
|||||||
|
|
According to this site, At any rate, do not use a regex. Using sets or lists is a much more intuitive way to represent the data and regexes will not perform better than O(n). |
|||||||||||||
|
|
If you're using a regular list, consider a If you want to implement your own fine-tuned membership test for your container object, override |
|||
|
|
|
You probably want to use a Set if you're worried about time. A Set is much like a list, but it checks for membership based on hashing. |
|||
|
|
|
Use a set. If you need case-insensitive checking, just store the words into the set downcased. Then when checking if a certain word is in the set, downcase the word before checking membership. The general rule is: normalize entries when building the set, and normalize an item before checking against the set. Another example of normalization is collapsing consecutive whitespace chars into a single space and stripping leading/trailing whitespace. |
|||
|
|
|
Running a regex against your word list is a very bad idea; it scales very badly. Using dict() set() or frozenset() will scale a lot better:
|
|||
|
|
setof words for this dictionary instead of alist? Also, are you familiar withtimeitwhich will allow you to gather actual benchmarks instead of hypotheticals? – S.Lott Jul 20 '11 at 15:07word in stringwill be a little faster thanword in listand at least as fast as a compiled regular expression because unless the list is sorted in some way (a hashtable is an example), there is no faster way. – agf Jul 20 '11 at 15:17