java代码比较两个字符串的相似程度

来源:互联网 发布:安卓c语言编辑器 编辑:程序博客网 时间:2024/06/05 09:45

直接上代码,相信你一看就会用。

public class Test {    public static void main(String[] args) {        String str = "返回死哦的话 感受到佛光 对方答复i夫vif夫和vfdhv 好好 vhfovh0ryf 后 vajs的";        String target = "时候 地方 焦点网 资金到位欧豪【吃哦继续吃点【删除你的VC第【才的vahspdi[i";        float similarity = getSimilarityRatio(str, target);        System.out.println(similarity);    }    /***     * 完全相似=1.0     * 完全不相似=0.0     */    public static float getSimilarityRatio(String str, String target) {        return 1 - (float) compare(str, target) / Math.max(str.length(), target.length());    }    private static int compare(String str, String target) {        int d[][]; // 矩阵        int n = str.length();        int m = target.length();        int i; // 遍历str的        int j; // 遍历target的        char ch1; // str的        char ch2; // target的        int temp; // 记录相同字符,在某个矩阵位置值的增量,不是0就是1        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++) { // 遍历str            ch1 = str.charAt(i - 1);            // 去匹配target            for (j = 1; j <= m; j++) {                ch2 = target.charAt(j - 1);                if (ch1 == ch2) {                    temp = 0;                } else {                    temp = 1;                }                // 左边+1,上边+1, 左上角+temp取最小                d[i][j] = min(d[i - 1][j] + 1, d[i][j - 1] + 1, d[i - 1][j - 1] + temp);            }        }        return d[n][m];    }    private static int min(int one, int two, int three) {        return (one = one < two ? one : two) < three ? one : three;    }}
原创粉丝点击