almondtools / stringsearchalgorithms

String matching algorithms for searching a single or multiple strings in large texts
http://stringsearchalgorithms.amygdalum.net/
GNU Lesser General Public License v3.0
44 stars 4 forks source link

More efficient Tries/DAWGs #7

Open almondtools opened 5 years ago

almondtools commented 5 years ago

The current trie actually is a directed acyclic word graph (DAWG), yet we have algorithms that do not depend on this:

Consequently each algorithm should use the best optimized variant instead of all depending on a DAWG (which is currently labeled trie).