标签: java algorithm
有没有方法可以知道Java中两个文本或字符串的相等百分比?
如何实现这种方法的算法将是令人满意的,或者只是一种光。
提前致谢。
答案 0 :(得分:1)
看看Levenshtein的距离:http://en.wikipedia.org/wiki/Levenshtein_distance
对于来自Apache commons的Java实现,请参阅:
https://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/StringUtils.html#getLevenshteinDistance(java.lang.CharSequence,java.lang.CharSequence)