欢迎来到天天文库
浏览记录
ID:57283170
大小:17.00 KB
页数:4页
时间:2020-08-09
《数据结构-基于BF和KMP的串模式匹配算法设计与实现.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、实验④:基于BF和KMP的串模式匹配算法设计与实现(1)BF算法Demo4_1(BF).exe实验源程序代码://Demo_4.cpp:Definestheentrypointfortheconsoleapplication.//#include"stdafx.h"#include#include#include#defineMaxSize100//串的存储表示typedefstruct{charstr[MaxSize];}String;//BF的串模式匹配算法设计与实
2、现intBFIndex(StringS,intpos,StringT){inti=pos;intj=0;while(i<=strlen(S.str)&&j<=strlen(T.str)){if(S.str[i-1]==T.str[j])//数组下标从0开始{i++;j++;}else{i=i-j+1;j=0;}}if(j==strlen(T.str)){return(i-strlen(T.str));}elsereturn0;}intmain(intargc,char*argv[]){Stringa,b;intc,d;prin
3、tf("请输入主串A的字符:");scanf("%s",a.str);printf("请输入子串B的字符:");scanf("%s",b.str);printf("请输入pos的值:");scanf("%d",&c);d=BFIndex(a,c,b);//调用BFIndex函数printf("子串B在主串A中第pos个字符之后的位置为:");printf("%d",d);system("pause");return0;}(2)KMP算法Demo_4_2(KMP).exe实验源程序代码://实验4KMP算法.cpp:Defi
4、nestheentrypointfortheconsoleapplication.//#include"stdafx.h"#include#include#include#defineMaxSize100//串的存储表示typedefstruct{charstr[MaxSize+1];//0号单元存放串的长度}String;//next[]的算法实现voidGetNext(StringT,intnext[]){inti=1,j=0;next[1]=0;while(i5、.str[0]){if(j==06、7、T.str[i]==T.str[j]){++i;++j;next[i]=j;}elsej=next[j];}}//KMP的串模式匹配算法设计与实现intKMPIndex(StringS,intpos,StringT,intnext[]){inti=pos,j=1;while(i<=S.str[0]&&j<=T.str[0]){if(j==08、9、S.str[i]==T.str[j]){i++;j++;}else{j=next[j];}}if(j==T.str[0])return(i-T.str10、[0]);elsereturn0;}intmain(intargc,char*argv[]){Stringa,b;intc,d;intnext[100];printf("请输入主串A的字符:");scanf("%s",a.str);printf("请输入子串B的字符:");scanf("%s",b.str);printf("请输入pos的值:");scanf("%d",&c);GetNext(b,next);d=KMPIndex(a,c,b,next);//调用KMPIndex函数printf("子串T在主串S中第pos个字符11、之后的位置为:");printf("%d",d);system("pause");return0;}
5、.str[0]){if(j==0
6、
7、T.str[i]==T.str[j]){++i;++j;next[i]=j;}elsej=next[j];}}//KMP的串模式匹配算法设计与实现intKMPIndex(StringS,intpos,StringT,intnext[]){inti=pos,j=1;while(i<=S.str[0]&&j<=T.str[0]){if(j==0
8、
9、S.str[i]==T.str[j]){i++;j++;}else{j=next[j];}}if(j==T.str[0])return(i-T.str
10、[0]);elsereturn0;}intmain(intargc,char*argv[]){Stringa,b;intc,d;intnext[100];printf("请输入主串A的字符:");scanf("%s",a.str);printf("请输入子串B的字符:");scanf("%s",b.str);printf("请输入pos的值:");scanf("%d",&c);GetNext(b,next);d=KMPIndex(a,c,b,next);//调用KMPIndex函数printf("子串T在主串S中第pos个字符
11、之后的位置为:");printf("%d",d);system("pause");return0;}
此文档下载收益归作者所有