PAT(散列)——1050. String Subtraction (20)

Given two strings S1 and S2, S = S1 – S2 is defined to be the remaining string after taking all the characters in S2 from S1. Your task is simply to calculate S1 – S2 for any given strings. However, it might not be that simple to do it fast.

Input Specification:

Each input file contains one test case. Each case consists of two lines which gives S1 and S2, respectively. The string lengths of both strings are no more than 104. It is guaranteed that all the characters are visible ASCII codes and white space, and a new line character signals the end of a string.

Output Specification:

For each test case, print S1 – S2 in one line.

Sample Input:
They are students.
aeiou
Sample Output:
Thy r stdnts.

题目大意:

签到题。

题目解析:

具体代码:

#include<iostream>
#include<map>
using namespace std;
map<char,int> m;

int main() {
	freopen("data.in","r",stdin);
	string s1,s2;
	getline(cin,s1);
	getline(cin,s2);
	for(int i=0;i<s2.size();i++)
		m[s2[i]]=1;
	int k=0;
	for(int i=0;i<s1.size();i++)
		if(m.find(s1[i])==m.end())
			s1[k++]=s1[i];
	for(int i=0;i<k;i++)
		printf("%c",s1[i]);
	return 0;
}
全部评论

相关推荐

嵌入式的小白:有道理哈,这种就看能不能捞
点赞 评论 收藏
分享
八极星:有什么不能问的,(/_\),这又不是多珍贵的机会,你有什么可失去的
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务