您好,欢迎访问三七文档
当前位置:首页 > 商业/管理/HR > 招聘面试 > 数据结构-基于BF和KMP的串模式匹配算法设计与实现
实验④:基于BF和KMP的串模式匹配算法设计与实现(1)BF算法Demo4_1(BF).exe实验源程序代码://Demo_4.cpp:Definestheentrypointfortheconsoleapplication.//#includestdafx.h#includestdio.h#includestring.h#includestdlib.h#defineMaxSize100//串的存储表示typedefstruct{charstr[MaxSize];}String;//BF的串模式匹配算法设计与实现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;printf(请输入主串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\n,d);system(pause);return0;}(2)KMP算法Demo_4_2(KMP).exe实验源程序代码://实验4KMP算法.cpp:Definestheentrypointfortheconsoleapplication.//#includestdafx.h#includestdio.h#includestring.h#includestdlib.h#defineMaxSize100//串的存储表示typedefstruct{charstr[MaxSize+1];//0号单元存放串的长度}String;//next[]的算法实现voidGetNext(StringT,intnext[]){inti=1,j=0;next[1]=0;while(iT.str[0]){if(j==0||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||S.str[i]==T.str[j]){i++;j++;}else{j=next[j];}}if(j==T.str[0])return(i-T.str[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个字符之后的位置为:);printf(%d\n,d);system(pause);return0;}
本文标题:数据结构-基于BF和KMP的串模式匹配算法设计与实现
链接地址:https://www.777doc.com/doc-4886256 .html