美文网首页
golang-KMP算法

golang-KMP算法

作者: MrBryan | 来源:发表于2021-04-21 09:03 被阅读0次
import (
    "fmt"
)
func KMP(haystack, needle string) int {
    n, m := len(haystack), len(needle)
    if m == 0 {
        return 0
    }
    pi := substringRepetition(needle)
    for i, j := 0, 0; i < n; i++ {
        for j > 0 && haystack[i] != needle[j] {
            j = pi[j-1]
        }
        if haystack[i] == needle[j] {
            j++
        }
        if j == m {
            return i - m + 1
        }
    }
    return -1

}

func substringRepetition(needle string) []int {
    m := len(needle)
    pi := make([]int, m)
    for i, j := 1, 0; i < m; i++ {
        for j > 0 && needle[i] != needle[j] {
            j = pi[j-1]  //一眼能看明白这个的~,请允许我称呼你一声大神
        }
        if needle[i] == needle[j] {
            j++
        }
        pi[i] = j
    }
    return pi
}

相关文章

网友评论

      本文标题:golang-KMP算法

      本文链接:https://www.haomeiwen.com/subject/txjalltx.html