Implementing a simple Trie for efficient Levenshtein Distance calculation - Java

后端 未结 11 768
不思量自难忘°
不思量自难忘° 2020-12-22 18:51

UPDATE 3

Done. Below is the code that finally passed all of my tests. Again, this is modeled after Murilo Vasconcelo\'s modified version of Steve

11条回答
  •  隐瞒了意图╮
    2020-12-22 19:39

    I've implemented the algo described on "Fast and Easy Levenshtein distance using a Trie" article in C++ and it is really fast. If you want (understand C++ better than Python), I can past the code in somewhere.

    Edit: I posted it on my blog.

提交回复
热议问题