-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
I am trying to utilize MDAG as the data structure for an optimized Levenshtein distance function as explained here. The MDAG takes the place of a Trie in the original definition. But I'm running into a problem because I don't understand how to traverse the graph. For example I need to translate this Python code to the equivalent Java where trie
becomes mdag
.
for letter in trie.children:
searchRecursive( trie.children[letter], letter, ... )
So, what's is the general pattern for traversal?
Metadata
Metadata
Assignees
Labels
No labels