Skip to content

Comment on Levenshtein Automata (2010)parent

Comments

The automata is incredibly slow, though it's also incredibly cool. I implemented a trie that allows for Levenshtein distance queries here github.com/jamra/LevenshteinTrie

That was just a fun project, not something I optimized or even tested appropriately.

The theory behind the trie is that the dynamic programming algorithm for Levenshtein distance gets passed to each recursive step, reducing the amount of comparisons needed.

I like this subject so I'm going to read the paper you linked ;)

AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.