All in All--POJ 1936
1、题目类型:字符串。
2、解题思路:字符串匹配,在字符串t中单个字符寻找s,单个字母匹配则i++;
3、注意事项:匹配区分大小写。
4、实现方法:
#include<iostream>
#include<string>
using namespace std;
bool Cmp(string a,string b)
{
int i=0,j=0;
while(a[i]!='\0' && b[j]!='\0')
{
if(a[i]==b[j])
{
i++;
}
j++;
}
if(a[i]=='\0')
return 1;
else
return 0;
}
int main()
{
string str1,str2;
while(cin>>str1>>str2)
{
if(Cmp(str1,str2))
cout<<"Yes"<<endl;
else
cout<<"No"<<endl;
}
return 0;
}