I need to find occurrences of ~ 25 000 words within a text. What is the most suitable algorithm/library for this purpose?
target language is C++
|
3
|
I need to find occurrences of ~ 25 000 words within a text. What is the most suitable algorithm/library for this purpose? target language is C++
|
||
|
|
|
|
build a hashtable with the words, and scan throuhgt the text, for each word lookup in the wordtable and stuff the needed info (increment count, add to a position list, whatever). |
||||||||||||
|
|
|
A Bloom Filter may be your best bet. You initialize your filter with your search terms, then while reading your corpus can quickly check if each work is in the filter. It is very space efficient, much better than simply hashing each word: with a 1% false-positive rate it should require only 9.6 bits per element. The false-positive rate is reduced by a factor of 10 for each additional 4.8 bits per element. Contrast this to plain hashing, which usually requires sizeof(int) == 32 bits per element. I have an implementation in C# here: http://www.codeplex.com/bloomfilter Here's an example, demonstrating its use with strings:
|
|||
|
|
|
viceBerg says:
With Boyer-Moore, aren't you typically searching a block of text for a single string? For a simple to implement solution go with the hash table approach suggested by Javier. The Bloom Filter suggested by FatCat1111 should work too... depending on the goals. |
||
|
|
|
Boyer-Moore isn't apt for efficiently searching many words. There is actually a very efficient algorithm for doing just that, called the Wu-Manber algorithm. I'll post a reference implementation. Notice, however, that I did this some time ago for educational purpose only. Hence, the implementation isn't really apt for direct usage and can also be made more efficient. It also uses the There's an explanation of the algorithm in a lecture script from a lecture at the Freie Universität Berlin, held by Knut Reinert. The original paper is also online (just found it again) but I don't particularly like the pseudocode presented there.
Example of usage:
|
|||
|
|
|
|
As Javier says, the simplest solution is probably a hash table. In C++, this can be implemented using an STL set. First add the 25,000 test words to the set, and then scan through each word in the text, using set.find(current_word) to evaluate whether the word is among the 25,000 test words. set.find is logarithmically fast, so 25,000 test words shouldn't be too large. The algorithm is obviously linear in the number of words in the text. |
||||
|
|
|
May be storing your initial dictionnary (the 25000 words) in a berkeley db hash table on disk, that you can probably use directly from c/c++ (i know you can do it from perl), and for each word in the text, query if it's present in the database. |
||
|
|
|
|
if the corpus is so large, try to optimize it in this way: compute an hash of each word you need to check, assigning to each char an integer prime number and then multiplying each number together;store each number->word in a multimap (you need to allow for multiple value on single key) while scanning the wordlist, compute the hash in the same way for each word, then get the word(s) associated with the computed key on the hashmap. using integers as key, you have a retrieval of O(1); this way you could find in a really quick way if the processed word has some anagram (you multiplied characters) inside the map. remember: you stored in the multimap the set of the word having that same hash, so you now need to find a match in this greatly reduced set. you need this additional check as the simply existence of the integer on the map does not equate to the existence of the word in the associated set: we are using hashing here to reduce the computational space of the problem, but this introduces collision which need to be disambiguated checking on each identified anagram. |
||
|
|
|
You may also sort the text and the word-list alphabetically. When you have two sorted arraysyou can easily find the matches in linear time. |
||
|
|
|
|
You want a Ternary Search Tree. A good implementation can be found here. |
||
|
|
|
|
If the text you're searching is huge, then it might be worth doing some preprocessing: assemble your 25,000 words into a TRIE. Scan to the start of the first word in the text, and start walking the TRIE as you walk through the letters of the word. If there's no transition in your TRIE, skip to the start of the next word and go back to the root of the TRIE. If you reach the end of the word, and you're at a word-ending node in the TRIE, you've found a match. Repeat for each word in the text. If your text is merely large (rather than huge), then simply looking up each word in a hash table is probably sufficient. |
||
|
|
|
|
Use the Aho-Corasick algorithm. It was made for this application. You'll only need to read each letter in your search text once. I've recently implemented and used it with great results. |
||
|
|
|
|
Aho-Corasick algorithm is built specifically for that purpose: searching for many words at once. |
||
|
|