KMP算法

Posted acbingo

tags:

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

看了一晚上才算看明白,明天继续看

从头到尾彻底理解KMP

public class KmpSearch {
    public static int indexOf(String s, String p) {
        if (p.length() == 0) return 0;
        int[] next = new int[p.length()];

        getNext(p, next);

        int i = 0;
        int j = 0;
        int sLen = s.length();
        int pLen = p.length();

        while (i < sLen && j < pLen) {
            if (j == -1 || s.charAt(i) == p.charAt(j)) {
                i++;
                j++;
            } else {
                j = next[j];
            }
        }

        if (j == pLen) {
            return i - j;
        } else {
            return -1;
        }
    }

    private static void getNext(String p, int[] next) {
        next[0] = -1;
        int j = 0;
        int k = -1;
        while (j < next.length - 1) {
            if (k == -1 || p.charAt(j) == p.charAt(k)) {
                j++;
                k++;
                next[j] = k;
            } else {
                k = next[k];
            }
        }
    }

    public static void main(String[] args) {
        int[] next = new int[5];
        getNext("ababc", next);
        System.out.println(indexOf("ababc","abc"));
    }
}

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

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

Python ---- KMP(博文推荐+代码)

KMP算法及Python代码

KMP算法及Python代码

图解KMP算法原理及其代码分析

Kmp算法Java代码实现