美文网首页
poj1936 string处理

poj1936 string处理

作者: 暖昼氤氲 | 来源:发表于2019-11-09 15:19 被阅读0次
    /*
    Time:2019.11.9
    Author: Goven
    type:string查找子串 
    err:
    ref:
    */
    #include<iostream>
    #include<string> 
    using namespace std;
    
    int main()
    {
        string s, t;
        int sl, tl, i, j;
        while (cin >> s >> t) {
            sl = s.length();
            tl = t.length();
            if (sl > tl) {
                cout << "No" << endl;
                continue;
            }
            for (i = 0, j = 0; i < sl && j < tl; ++j) {
                if (s[i] == t[j]) {
                    ++i;
                }
            }
            if (i < sl) cout << "No" <<endl;
            else cout << "Yes" << endl;
        }
        
        return 0;
    }
    
    
    

    相关文章

      网友评论

          本文标题:poj1936 string处理

          本文链接:https://www.haomeiwen.com/subject/jflnbctx.html