亲和串
Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3732 Accepted Submission(s): 1670
亲和串的定义是这样的:给定两个字符串s1和s2,如果能通过s1循环移位,使s2包含在s1中,那么我们就说s2 是s1的亲和串。
#include <iostream>
#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;
char str1[100000],str2[100000];
char str[200000];
int main()
{
while(scanf("%s",str1)!=EOF)
{
scanf("%s",str2);
strcpy(str,str1);
strcat(str,str1);
if(strstr(str,str2)!=NULL)
printf("yes\n");
else
printf("no\n");
}
return 0;
}
//KMP,测试了下、是0Ms,不理解上面的代码为啥也是0Ms,叫我写了半个多小时的KMP怎么办
#include <iostream>
#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;
char str1[100000],str2[100000];
char str[200000];
int next[100000];
void KMP()
{
int i,j;
next[0]=-1;
i=1,j=0;
while(str2[i]!='\0')
{ // printf("%d",i);
if(str2[i]==str2[j])
{
next[++i]=++j;
if(str2[i]==str[j])
next[i]=next[j];
}
else
{
j=next[j];
if(j==-1)
{
i++;
next[i]=0;
j=0;
}
}
}
}
int main()
{ int i,j;
bool b;
while(scanf("%s",str1)!=EOF)
{
scanf("%s",str2);
strcpy(str,str1);
strcat(str,str1);
KMP();
// for(int i=0;i<=10;i++)
// printf("%d ",next[i]);
i=j=b=0;
while(str[i]!='\0')
if(str[i]==str2[j])
{
i++;
j++;
if(str2[j]=='\0')
{b=1;break;}
}
else
{
j=next[j];
if(j==-1)
{
i++;
j=0;
}
}
if(b) printf("yes\n"); else printf("no\n");
}
return 0;
}