aho corasick trie
1.0.0
Einfach zu bedienende Implementierung von Aho-Corasick-Trie. Konstruiert aus den gewünschten Mustern und kann dann den Text verarbeiten und alle im Text enthaltenen Muster finden.
Beispiel Compilation:
g++ common.cpp ../Trie/Trie.cpp -o common
# include " Trie/Trie.hpp "
...
Trie trie;
set< int > found;
char * patternsChar[] = {
" Lorem " ,
" lorem " ,
" five centuries " ,
" since the 1500s, when an unknown printer " ,
" containing the Lorem "
};
vector<string> patterns (patternsChar, patternsChar + sizeof (patternsChar) / sizeof(patternsChar[ 0 ]));
string text = " Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. " ;
for ( size_t i = 0 ; i < patterns.size(); ++i) {
trie. addPattern (patterns[i], i);
}
trie.processText(text, found);
for (set< int >::iterator it = found.begin(); it != found.end(); it++) {
cout << " Found pattern ( " << *it + 1 << " ): " << patterns[*it] << " . " << endl;
}