欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

字符串移位包含问题

程序员文章站 2022-03-08 14:09:09
...

字符串移位包含问题

#include<bits/stdc++.h>
using namespace std;
int fun(string s,string t)
{
	int len=s.length();
	while(len--)
	{
		if(s.find(t)!=string::npos)
			return 1;
		s.push_back(s[0]);
		s.erase(s.begin());
	}
	return 0;
}
int main()
{
	string a,b;
	cin>>a>>b;
	if(fun(a,b)||fun(b,a))	cout<<"true";
	else	cout<<"false";
}
	
相关标签: 字符串 leetcode