【UVa】[156]Ananagrams

文章字数:234

问题描述

问题分析

记录每个string出现次数
然后只出现一次的即是结果

可以用map做String到int的映射

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include<iostream>
#include<string>
#include<cctype>
#include<vector>
#include<map>
#include<algorithm>
using namespace std;

map<string,int>cnt;
vector<string>words;

string repr(const string& s) {
	string ans = s;
	for(int i=0; i<ans.length(); i++)
		ans[i] = tolower(ans[i]);
	sort(ans.begin(),ans.end());
	return ans;
}
int main() {
	int n=0;
	string s;
	while(cin>>s) {
		if(s[0]=='#')
			break;
		words.push_back(s);
		string r=repr(s);
//		printf("-%d-%s-%d-",cnt.count(r),r.c_str(),cnt[r]);

/*		if(!cnt.count(r))
			cnt[r]=0;
		不加的话也可以
		应该是为了初始化 
*/
		cnt[r]++;
		
//		printf("%d\n",cnt[r]);
	}
	vector<string>ans;
	for(int i=0; i<words.size(); i++)
		if(cnt[repr(words[i])]==1)
			ans.push_back(words[i]);
	sort(ans.begin(),ans.end());
	for(int i=0; i<ans.size(); i++)
		cout<<ans[i]<<"\n";
	return 0;
}
//通过map记录string对应的出现次数 

题目地址:【UVa】[156]Ananagrams

该内容采用 CC BY-NC-SA 4.0 许可协议。

如果对您有帮助或存在意见建议,欢迎在下方评论交流。

加载中...