解题思路:
在s1字符串后连接一个s1,用find()函数进行搜索即可。
注意事项:
参考代码:
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s1;
string s2;
while(cin>>s1>>s2){
if(s1.size()<s2.size())
{
cout<<"no"<<endl;
}
else
{
s1.append(s1);
int t;
t=s1.find(s2);
if(t>0)
cout<<"yes"<<endl;
else
cout<<"no"<<endl;
}
}
return 0;
}
0.0分
0 人评分