题目:如果一个字符串str,把字符串str前面任意的部分挪到后面形成的字符串叫做str的旋转词。
#include<iostream>
using namespace std;
int main()
{
string str1,str2;
cin>>str1>>str2;
str1+=str1;
if(str1.find(str2)!=string::npos)
cout<<true;
else
cout<<false;
return 0;
}
通过将字符串重复拼接在通过查找算法判断是否是旋转词