【題意簡述】:給定兩個字符串s和t,判斷s是否是t的子串。長度不超過100000.
【分析】:簡單的模擬吧。。
// 368K 16Ms #include#include using namespace std; int main() { int i,j; char s[100000],t[100000]; while(cin>>s>>t) { long len1 = strlen(s); long len2 = strlen(t); i = 0; j = 0; while(true) { if(i == len1) { cout<<"Yes"<