原题网址:
https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=835&page=show_problem&problem=92
让输出整篇文章中,按字典序输出在字母的任意组合之后,在文章中仍然唯一的单词.
想了很多方法去替代stl 但是实在不方便,就学着用stl了......
map vector string 都比较好用,不过操作也比较多....慢慢学习....
#include<bits/stdc++.h>
using namespace std;
int cnt[1005], k = 0;
string change(string s)//转化为有统一标准的单词
{
int len = s.length();
for (int i = 0; i < len; ++i)
{
s[i] = tolower(s[i]);
}
sort(s.begin(), s.end());
return s;
}
int main()
{
string s, tp;
map < string, int >vis;
vector < string > word;
// freopen("shuju.txt", "r", stdin);
while (cin >> s, s[0] != '#')
{
tp = change(s);
if (!vis.count(tp))//查询是否存在
{
vis[tp] = k++;
}
++cnt[vis[tp]];//标记在统计数组里
word.push_back(s);
}
sort(word.begin(), word.end());//排序
int num = word.size();
for (int i = 0; i < num; ++i)
{
if (cnt[vis[change(word[i])]] == 1)//查找只出现一次的
{
cout << word[i] << endl;
}
}
return 0;
}