字符串匹配——KMP算法(C++)

源代码:

#include<cstdio>
#include<iostream>
using namespace std;
string s1,s2;
int m,n,k(0),next[1001]; //在Next数组中,存储的是匹配失败后,上一位应该跳跃到的节点编号。 
int main()
{
    getline(cin,s1);
    getline(cin,s2);
    m=s1.size();
    n=s2.size();
    next[0]=0; //第一个字符之前,不存在可比较的字符。
    for (int a=1;a<n;a++) //在C++中,字符串实际上以开头为0的、字符数组的形式存在。 
    {
        while (k>0&&s2[a]!=s2[k])
          k=next[k-1]; //匹配失败后,根据已经匹配成功的母串的上一位,进行跳跃。 
        if (s2[a]==s2[k])
          k++;
        next[a]=k;
    }
    k=0;
    for (int a=0;a<m;a++)
    {
        while (k>0&&s1[a]!=s2[k]) //同理于上。 
          k=next[k-1];
        if (s1[a]==s2[k])
          k++;
        if (k==n) //长度相同,匹配成功,输出位置。 
          printf("%d",a-n+2);
    }
    return 0;
} 
posted @ 2016-02-15 21:44  【機關】  阅读(290)  评论(0编辑  收藏  举报