KMP算法练习

这篇博客主要展示了如何用C语言实现KMP(Knuth-Morris-Pratt)算法来查找模式串在主串中的位置。通过定义全局变量Rs解决PTA输入问题,KMP函数结合BuildMatch函数完成模式匹配表格的构建,从而实现高效的字符串搜索。
摘要由CSDN通过智能技术生成

代码如下:
#include <stdio.h>
#include<string.h>
#include<stdlib.h>

int Rs; //全局变量解决PTA中scanf返回值问题
int KMP(char *String,char *Pattern);//KMP算法得出模式串在主串中位置,不 在则输出-1
void BuildMatch(char *Pattern,int * match);//记录模式串每个字符的变化值

int main()
{
char * String , * Pattern;
String=(char *)malloc(sizeof(char) * 100000);
Pattern=(char *)malloc(sizeof(char) * 100000);
Rs=scanf("%s",String);
Rs=scanf("%s",Pattern);
int P;
P=KMP(String,Pattern);
if(P<0) P=-1;
printf("\n%d",P);
return 0;
}
void BuildMatch(char *pattern,int * match)
{
int i,j;
int m=strlen(pattern);
match[0]=-1;
for(j=1;j<m;j++)
{
i=match[j-1];
while((i>=0)&&(pattern[i+1]!=pattern[j]))
i=match[i];
if(p

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值