串结构练习——字符串匹配
Time Limit: 1000ms Memory limit: 65536K 有疑问?点这里^_^
题目链接:http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=2125
题目描述
给定两个字符串string1和string2,判断string2是否为string1的子串。
输入
输入包含多组数据,每组测试数据包含两行,第一行代表string1,第二行代表string2,string1和string2中保证不出现空格。
输出
对于每组输入数据,若string2是string1的子串,则输出"YES",否则输出"NO"。
示例输入
abc a 123456 45 abc ddd
示例输出
YES YES NO
提示
代码:
1 #include<string.h> 2 #include<iostream> 3 using namespace std; 4 char S[100],T[100]; 5 int s,t,next[100],nextval[100]; 6 void get_next(char T[],int next[]);//对应模式匹配算法一next函数值 7 void get_nextval(char T[],int nextval[]);//对应模式匹配算法二nextval函数值 8 int Index_KMP(char S[],char T[],int pos);//模式匹配算法一 9 int Index_KMP2(char S[],char T[],int pos);//模式匹配算法二 10 int main() 11 { 12 while(cin>>S>>T) 13 { 14 memset(next,0,sizeof(next)); 15 int i; 16 s=strlen(S); 17 t=strlen(T); 18 for(i=s;i>=1;i--) 19 S[i]=S[i-1]; 20 S[s+1]='