<span style="font-size:18px;">#include<stdio.h>
#include<string.h>
#define MAXSIZE 255
#define PF printf("\n")
int nextval[MAXSIZE+10];
char T[MAXSIZE+1],S[MAXSIZE+1];//主串S,模式串T
void get_nextval()
{
int i=1,j=0;
nextval[1]=0;
while(i<strlen(T+1))
{
if(j==0||T[i]==T[j])
{
++i;++j;
if(T[i]!=T[j])
nextval[i]=j;
else
nextval[i]=nextval[j];
}
else
j=nextval[j];
}
}
int KMP()
{
int i,j,lens=strlen(S+1),lent=strlen(T+1);
for(i=1,j=0;i<=lens;++i)
{
while(j>0&&S[i]!=T[j+1])
j=nextval[j];
if(S[i]==T[j+1])
++j;
if(j==lent)
return 1;
}
return 0;
}
int main()
{
printf("请输入需要测试的次数:");
int t;
scanf("%d",&t);
PF;
while(t--)
{
memset(S,'\0',sizeof(S));
memset(T,'\0',sizeof(T));
printf("请输入主串:");
PF;
scanf("%s",S+1);
printf("请输入模式串:");
PF;
scanf("%s",T+1);
get_nextval();
if(KMP())
printf("OK╰( ̄▽ ̄)╭\n");
else
printf("NO╮(╯▽╰)╭\n");
}
return 0;
} </span>