C#计算两字符串相似度
当前位置:点晴教程→知识管理交流
→『 技术文档交流 』
private void button1_Click(object sender, EventArgs e) { this.textBox3.Text = "相似度:" + ComputeTextSame(this.textBox1.Text, this.textBox2.Text, false).ToString(); } public static double ComputeTextSame(string textX, string textY, bool isCase = false) // 计算文本相似度函数(适用于短文本) { if (textX.Length <= 0 || textY.Length <= 0) { return (0); } if (!isCase) { textX = textX.ToLower(); textY = textY.ToLower(); } int[,] dp = new int[Math.Max(textX.Length, textY.Length) + 1, Math.Max(textX.Length, textY.Length) + 1]; for (int x = 0; x < textX.Length; x++) { for (int y = 0; y < textY.Length; y++) { if (textX[x] == textY[y]) { dp[x + 1, y + 1] = dp[x, y] + 1; } else { dp[x + 1, y + 1] = Math.Max(dp[x, y + 1], dp[x + 1, y]); } } } return (Math.Round(((double)(dp[textX.Length, textY.Length]) / Math.Max(textX.Length, textY.Length)) * 100, 2)); } 该文章在 2023/3/22 15:41:22 编辑过 |
关键字查询
相关文章
正在查询... |