這篇文章主要為大家詳細介紹了C#計算2個字串相似性的相關代碼,具有一定的參考價值,感興趣的小夥伴們可以參考一下
計算字串相似性,直接來C#代碼
public static float levenshtein(string str1, string str2) { //計算兩個字串的長度。 int len1 = str1.Length; int len2 = str2.Length; //建立上面說的數組,比字元長度大一個空間 int[,] dif = new int[len1 + 1, len2 + 1]; //賦初值,步驟B。 for (int a = 0; a <= len1; a++) { dif[a, 0] = a; } for (int a = 0; a <= len2; a++) { dif[0, a] = a; } //計算兩個字元是否一樣,計算左上的值 int temp; for (int i = 1; i <= len1; i++) { for (int j = 1; j <= len2; j++) { if (str1[i - 1] == str2[j - 1]) { temp = 0; } else { temp = 1; } //取三個值中最小的 dif[i, j] = Math.Min(Math.Min(dif[i - 1, j - 1] + temp, dif[i, j - 1] + 1), dif[i - 1, j] + 1); } } Console.WriteLine("字串\"" + str1 + "\"與\"" + str2 + "\"的比較"); //取數組右下角的值,同樣不同位置代表不同字串的比較 Console.WriteLine("差異步驟:" + dif[len1, len2]); //計算相似性 float similarity = 1 - (float)dif[len1, len2] / Math.Max(str1.Length, str2.Length); Console.WriteLine("相似性:" + similarity); return similarity; }
返回結果就是相似性了,驗證碼識別上用的到