首页 > 其他 > 详细

Kmp

时间:2020-06-10 16:31:33      阅读:42      评论:0      收藏:0      [点我收藏+]
#include <bits/stdc++.h>
using namespace std;
const int maxn=1e6+10;
void get_next(char x[],int n,int nxt[]) {
    int i = 0, j = nxt[0] = -1;
    while (i < n) {
        while (j != -1 && x[i] != x[j]) j = nxt[j];
        nxt[++i] = ++j;
    }
}
char str[maxn],str1[maxn];
int nxt[maxn],ans;
void kmp(char x[],int n,char y[],int m) {
    int i = 0, j = 0;
    while (i < m) {
        while (j != -1 && y[i] != x[j]) j = nxt[j];
        i++;
        j++;
        if (j >= n) {
            ans++;
            j=0;
            //j = nxt[j];
        }
    }
}
int main() {
    cin >> str;
    cin >> str1;
    int n = strlen(str);
    int m = strlen(str1);
    get_next(str, n, nxt);
    kmp(str, n, str1, m);
    cout << ans << endl;
//    for (int i = 0; i < n; i++) {
//        cout << nxt[i] << " ";
//    }
}

Kmp

原文:https://www.cnblogs.com/Accpted/p/13086061.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!