AcWing 156. UVA 156
原题链接
简单
作者:
史一帆
,
2021-04-13 20:48:46
,
所有人可见
,
阅读 508
c++关于map的find和count的使用
使用count,返回的是被查找元素的个数。如果有,返回1;否则,返回0。注意,map中不存在相同元素,所以返回值只能是1或0。
使用find,返回的是被查找元素的位置,没有则返回map.end()。
#include <iostream>
#include <string>
#include <cctype>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;
map<string, int> cnt;
vector<string> words;
// 将单词s进行"标准化"
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);
if (!cnt.count(r)) cnt[r] = 0;
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] << endl;
return 0;
}