比较两字符串相似度算法

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace MyApp
{
    public class Similarity
    {
        private int min(int one, int two, int three)
        {
            int min = one;
            if (two < min)
            {
                min = two;
            }
            if (three < min)
            {
                min = three;
            }
            return min;
        }

        public int LD(String str1, String str2)
        {
            int[,] d;    

            int n = str1.Length, m = str2.Length;
            int i,j;                

            char ch1, ch2; 
            int temp;   

            if (n == 0)
            {
                return m;
            }
            if (m == 0)
            {
                return n;
            }

            d = new int[n + 1, m + 1];

            for (i = 0; i <= n; i++)
            {    

                d[i, 0] = i;
            }
            for (j = 0; j <= m; j++)
            {      
                d[0, j] = j;
            }
            for (i = 1; i <= n; i++)
            {     
                ch1 = str1[i - 1];
                for (j = 1; j <= m; j++)
                {
                    ch2 = str2[j - 1];
                    if (ch1 == ch2)
                    {
                        temp = 0;
                    }
                    else
                    {
                        temp = 1;
                    }
                    d[i, j] = min(d[i - 1, j] + 1, d[i, j - 1] + 1, d[i - 1, j - 1] + temp);
                }
            }
            return d[n, m];
        }

        public double sim(String str1, String str2)
        {
            int ld = LD(str1, str2);
            return 1 - (double)ld / Math.Max(str1.Length, str2.Length);
        }

        public static void TestData()
        {
            Similarity s = new Similarity();
            String str1 = "中华人民国万岁共和的";
            String str2 = "中华人民共和国万岁的";

            int aa = s.LD(str1, str2);
            double bb = s.sim(str1, str2);

            String str11 = "和国万岁中华人民共";
            String str21 = "中华人民共和国万岁";

            int aa1 = s.LD(str11, str21);
            double bb1 = s.sim(str11, str21);
          
        }
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值