KMP算法代码实现记录

Posted ningxinjie

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了KMP算法代码实现记录相关的知识,希望对你有一定的参考价值。

private static int kmpDemo(String str1,String str2){
        if (str2==null||str1==null||str1.length()-str2.length()<0){
            return -1;
        }
        //首先构建字符匹配表
        int[] matchTable=getStrMatchTable(str2);
        int fatherP=0,childP=0;
        while (fatherP<str1.length()&&childP<str2.length()){
            childP=0;
            if(str1.charAt(fatherP)==str2.charAt(childP)){
                while (fatherP<str1.length()&&childP<str2.length()&&str1.charAt(fatherP)==str2.charAt(childP)){
                    fatherP++;
                    childP++;
                }
                if(childP==str2.length()){
                    return fatherP-str2.length();
                }else {
            //直接移动到子串当前匹配的长度-字符匹配表中对应的当前未匹配的索引的值 fatherP
+=childP+1-matchTable[childP]; } }else { fatherP++; } } return -1; } //构建字符匹配表 private static int[] getStrMatchTable(String str){ int[] res=new int[str.length()]; res[0]=0; for (int i = 1,j=0; i < res.length; i++) { //当str.charAt(i) != str.charAt(j),需要从res[j-1]获取新的j的位置 //知道找到二者相等时才退出寻找 //这是kmp算法的核心 while (j > 0 && str.charAt(i) != str.charAt(j)) { j=res[j-1]; } //当str.charAt(i)==str.charAt(j)满足时,部分匹配值就+ if(str.charAt(i)==str.charAt(j)){ j++; } res[i]=j; } return res; }

 

以上是关于KMP算法代码实现记录的主要内容,如果未能解决你的问题,请参考以下文章

数据结构—串KMP模式匹配算法

KMP算法的理解和代码实现

KMP算法的代码实现

KMP算法详解以及Java代码实现

KMP算法详解以及Java代码实现

Aho-Corasick automaton