#include <stdio.h> #include <string.h> #define N 100005 char str1[N],str2[N]; int main() { int i,j,len1,len2; while(scanf("%s %s",str1,str2)!=EOF) { j=0; len1=strlen(str1); len2=strlen(str2); for(i=0;i<len2;i++) if(str1[j]==str2[i]) j++; if(j==len1) printf("Yes\n"); else printf("No\n"); } return 0 ; }
相关文章
- 10-19FFT求解字符串匹配
- 10-19FFT x 字符串匹配
- 10-192019牛客暑期多校训练营(第九场)All men are brothers——并查集&&组合数
- 10-19c – 可以使用SIMD优化两个字符串之间的字节匹配计数吗?
- 10-19C++-POJ1094-Sorting It All Out[拓扑排序][邻接矩阵]
- 10-19【葵花宝典】All-in-One模式安装KubeSphere
- 10-19[ LeetCode ] #32. Longest Valid Parentheses (最长符合符合匹配的子字符串)
- 10-19Drupal 7.23:函数module_invoke_all()注释
- 10-19剑指offer 52.字符串 正则表达式匹配
- 10-19442. Find All Duplicates in an Array