摘要:
//计算相似度 public static double LevenshteinDistanceSimilarty(string str1, string str2) { if (string.IsNullOrEmpty(str1) || string.IsNullOrEmpty(str2)) return 0; int str1Length = str1.Length; int str2Leng 阅读全文
posted @ 2019-12-30 14:57
石shi
阅读(522)
评论(0)
推荐(0)