码迷,mamicode.com
首页 > 其他好文 > 详细

1050 String Subtraction

时间:2018-08-29 01:10:47      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:let   禁用   ++   nbsp   style   names   getline   span   str   

题意:给出两个字符串s1和s2,在s1中删去s2中含有的字符。

思路:注意,因为读入的字符串可能有空格,因此用C++的getline(cin,str)。PAT系统迁移之后C语言中的gets()函数被禁用了。

代码:

#include <iostream>
#include <string>
using namespace std;
int main() { string str1,str2; getline(cin,str1); getline(cin,str2); bool needDeleted[128]={false};//needDeleted[ch]为true表示字符ch应当删去 for(auto ch:str2) needDeleted[ch]=true; for(auto ch:str1){ if(needDeleted[ch]) continue;//遇到需要删去的字符不输出 else cout<<ch; } return 0; }

 

1050 String Subtraction

标签:let   禁用   ++   nbsp   style   names   getline   span   str   

原文地址:https://www.cnblogs.com/kkmjy/p/9551648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!