KMP算法_学习笔记

Posted

tags:

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

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

int * buildNext(char *P){
    size_t m=strlen(P), j=0;
    int* N=new int[m];//next表
    int  t=N[0]=-1;
    while(j<m-1){
      if(0>t||P[j]==P[t]){
           j++;t++;
           N[j]=(P[j]!=P[t]?t:N[t]);//改进 
      }
      else  t=N[t];
    } 
    return N;
}
 
int match(char* P,char* T){
   int* next=buildNext(P);
   int n=(int)strlen(T),i=0;
   int m=(int)strlen(P),j=0;
   while(j<m&&i<n)
       if(0>j||T[i]==P[j]){i++;j++;}
       else j=next[j];
   delete [] next;
   return i-j;//返回首次匹配到到的位置下标(未找到则返回目标串长度) 
}


int main(int argc, char *argv[])
{   char T[1000];
    char P[50];
    while(cin>>T){
    cin>>P;
     
    cout<<match(P,T)<<endl;
    
    }
    system("PAUSE");
    return EXIT_SUCCESS;
}

  

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

数据结构学习笔记——KMP算法中的常见计算题目总结

数据结构学习笔记——KMP算法中的常见计算题目总结

学习数据结构笔记(18) --- [KMP算法]

数据结构和算法学习笔记三:KMP算法

Kmp算法笔记

「学习笔记」AC 自动机