KMP快速字符串匹配 (next数组优化)

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<iostream>
#include<algorithm>
using namespace std;

const int dmax=100100;
char s[dmax],p[dmax];
int next[dmax];


void get_next(char *p){
	int k=-1,j=0,n=strlen(p);
	next[0]=-1;
	while (j<n){
		if (k==-1 || p[k]==p[j]){
			j++;
			k++;
			if (p[j]!=p[k])
				next[j]=k;
			else next[j]=next[k];
		}else k=next[k];
	}
}
int kmp(char *s,char *p){
	int i=0,j=0,x=strlen(s),y=strlen(p);
	get_next(p);
	while (i<x && j<y){
		if (j==-1 || s[i]==p[j]){
			i++;
			j++;
		}else j=next[j];
	}
	if (j==y)
		return i-j;
	else return -1;
}

int main(){
	gets(p);
	gets(s);
	printf("%d\n",kmp(s,p));
	return 0;
}

    原文作者:KMP算法
    原文地址: https://blog.csdn.net/sxy_cnyali/article/details/50616682
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞