当前位置: 代码迷 >> 综合 >> 字符串移位包含问题 OpenJ_Bailian - 3711
  详细解决方案

字符串移位包含问题 OpenJ_Bailian - 3711

热度:54   发布时间:2024-02-19 23:03:15.0

拼接之后再查找

#include<iostream>
#include<cstring>
#include<algorithm>
#include<cmath>using namespace std ;int main(){
    string str1 , str2 ;cin >> str1 >> str2 ;if(str1.size() < str2.size()){
    swap( str1 , str2 ) ;}str1 += str1 ;if(str1.find( str2 , 0 ) == string::npos ) cout << "false" << endl ;//string::npos查找没有匹配 else cout << "true" << endl ;
}