CCF_ 201409-3_字符串匹配
Posted 冷暖知不知
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CCF_ 201409-3_字符串匹配相关的知识,希望对你有一定的参考价值。
水。
#include<cstdio> #include<iostream> #include<cstring> using namespace std; int main() { char a[105],b[105]; cin >> a; strcpy(b,a); strlwr(b); int flag,n; cin >> flag >> n; while(n--) { char temp[105],temp2[105]; cin >> temp; strcpy(temp2,temp); if(!flag) { strlwr(temp2); if(strstr(temp2,b)) cout << temp << endl; } else { if(strstr(temp,a)) cout << temp << endl; } } return 0; }
以上是关于CCF_ 201409-3_字符串匹配的主要内容,如果未能解决你的问题,请参考以下文章