POJ-1936 All in All
程序员文章站
2022-04-27 23:41:01
...
POJ-1936 All in All
题目链接:POJ-1936
题目大意:问前面的字符串是否按顺序存在于后面的字符串中
解题思路:双指针做法 十足的水题
代码块:
#include<iostream>
#include<string>
using namespace std;
int main(){
string strA, strB;
while(cin>>strA>>strB){
int lenA = strA.length();
int lenB = strB.length();
int i = 0, j = 0;
while(i < lenA && j < lenB){
if(strA[i] == strB[j]){
i++;
}
j++;
}
if(i == lenA) cout<<"Yes"<<endl;
else cout<<"No"<<endl;
}
return 0;
}
上一篇: vue中使用看板娘
下一篇: 谷歌终于开放“.app”*域名注册
推荐阅读
-
训练YOLOV3报错TypeError: not all arguments converted during string formatting
-
Sql学习第一天——SQL UNION 和 UNION ALL 操作符认识
-
基于preg_match_all采集后数据处理的一点心得笔记(编码转换和正则匹配)
-
安全、高效、零风险 福金All-Link汽车供应链金融交易平台上线
-
python中map、any、all函数用法分析
-
php中使用preg_match_all匹配文章中的图片
-
对Python模块导入时全局变量__all__的作用详解
-
php小经验:解析preg_match与preg_match_all 函数
-
delete archivelog all 无法彻底删除归档日志?
-
PHP函数之error_reporting(E_ALL ^ E_NOTICE)详细说明