欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

UVA - 10340 . All in All

程序员文章站 2022-04-27 23:37:32
...

UVA - 10340 . All in All题解

欢迎访问我的Uva题解目录https://blog.csdn.net/ri*qi/article/details/81149109

题目描述

UVA - 10340 . All in All

题意解析

输入两个字符串s和t,判断是否可以从t中删除0个或多个字符(其他字符顺序不变),得到字符串s。

算法设计

题目非常简单,直接看代码实现即可。

C++代码

#include<bits/stdc++.h>
using namespace std;
int main(){
    string s,t;
    while(cin>>s>>t){
        int i=0;
        for(char c:t)
            if(c==s[i])
                ++i;
        if(i==s.size())
            puts("Yes");
        else
            puts("No");
    }
    return 0;
}