题目链接:http://acm.pku.edu.cn/JudgeOnline/problem?id=1936
所用算法:字符串
提交情况:1A
注意事项:无
心得体会:水题
1 #include<stdio.h>
2
3 char s[100010];
4 char t[100010];
5
6 int judge(char s[],char t[])
7 {
8 int i=0;
9 int j=0;
10 while(s[i]!='\0'&&t[j]!='\0')
11 {
12 if(s[i]==t[j])
13 {
14 i++;
15 j++;
16 }
17 else
18 {
19 j++;
20 }
21 }
22 if(s[i]=='\0')
23 return 1;
24 else
25 return 0;
26 }
27
28 int main()
29 {
30 //freopen("data.in","r",stdin);
31 while(scanf("%s %s",s,t)==2)
32 {
33 if(judge(s,t))
34 printf("Yes\n");
35 else
36 printf("No\n");
37 }
38 }