题目链接:验证子串 - 洛谷
题目难度:入门
涉及知识点:STL函数
题意:
分析:用一个STL内置的find函数
AC代码:
#include<bits/stdc++.h>
/*find用法:string s1,s2;
int a=s1.find(s2);在s1中找s2
因为find未找到的返回值为nops,所以:if(a==s1.nops)cout<<"s2不是s1的子串";
else cout<<"s2是s1的子串";*/
using namespace std;
int main(){
string s1,s2;//定义为string类型
ios::sync_with_stdio(false);//加快cin,cout
cin>>s1>>s2;
int a=s1.find(s2);//寻找s1中是否有s2;
int b=s2.find(s1);
if(a!=s1.npos)cout<<s2<<" is substring of "<<s1<<endl;//有就输出
else if(b!=s2.npos)cout<<s1<<" is substring of "<<s2<<endl;
else cout<<"No substring";//没有就输出没有
return 0;
}
总结:用一个STL内置的find函数