我整天都在看这个Levenshtein Edit Distance的简单 python 实现。
def lev(a, b):
"""Recursively calculate the Levenshtein edit distance between two strings, a and b.
Returns the edit distance.
"""
if("" == a):
return len(b) # returns if a is an empty string
if("" == b):
return len(a) # returns if b is an empty string
return min(lev(a[:-1], b[:-1])+(a[-1] != b[-1]), lev(a[:-1], b)+1, lev(a, b[:-1])+1)
来自:http ://www.clear.rice.edu/comp130/12spring/editdist/
我知道它具有指数复杂性,但我将如何从头开始计算该复杂性?
我一直在互联网上搜索,但没有找到任何解释,只有声明它是指数的。
谢谢。