Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Levenshtein Automata和Damerau-Levenshtein 距离之间有什么区别以及何时使用每种算法?
它们是相关但根本不同的事物。Damerau-Levenshtein 距离测量两个弦之间的“差异”。Levenshtein 自动机识别与特定参考字符串具有特定Levenshtein距离(“差异”)的字符串。
所以自动机根据距离做出决定,而 DL 距离本身只是对“差异”的特定度量的定义(实际上,不是自动机使用的那个)。