C#如何計算2個字串相似性的範例程式碼分享

來源:互聯網
上載者:User
這篇文章主要為大家詳細介紹了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;  }

返回結果就是相似性了,驗證碼識別上用的到

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.