码迷,mamicode.com
首页 > 其他好文 > 详细

【模板】KMP字符串匹配【KMP】

时间:2018-07-23 20:49:30      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:字符串   strlen   lse   next数组   暴力   开始   col   pre   ofo   

题目大意:

给出两个字符串s1和s2,其中s2为s1的子串,求出s2在s1中所有出现的位置。


思路:

KMP算法模板题。 
KMP这个算法一开始真的很难懂,但是接触后过一会再研究就会豁然开朗。这个东西也很难解释原理,只有自己搞懂。 
推荐的KMP讲解:https://blog.csdn.net/starstar1992/article/details/54913261/ 
时间复杂度O(n),暴力时间复杂度O(n×m)


代码:

#include <cstdio>
#include <iostream>
#include <cstring>
using namespace std;

int next[1000101],n,m,j;
char a[1000101],b[1000101];

int main()
{
    cin>>a+1;
    cin>>b+1;
    n=strlen(a+1);
    m=strlen(b+1);
    next[1]=0;
    for (int i=1;i<m;i++)  //求next数组
    {
        while (b[i+1]!=b[j+1]&&j>0) j=next[j];  //不匹配
        if (b[i+1]==b[j+1]) j++;  //匹配成功
        next[i+1]=j;
    }
    j=0;
    for (int i=0;i<n;i++)
    {
        while (a[i+1]!=b[j+1]&&j>0) j=next[j];  //不一样
        if (a[i+1]==b[j+1]) j++;
        if (j==m)  //找到
        {
            printf("%d\n",i-j+2);
            j=next[j];
        }
    }
    for (int i=1;i<=m;i++)
     printf("%d ",next[i]);
    return 0;
}

 

【模板】KMP字符串匹配【KMP】

标签:字符串   strlen   lse   next数组   暴力   开始   col   pre   ofo   

原文地址:https://www.cnblogs.com/hello-tomorrow/p/9356733.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!