UVA 156 Ananagrams(stl,map,set)

例题4:UVA 156 Ananagrams
题目:把每个单词全部转化成小写字母,对每个单词,看它的字母重排后得到的单词在所有输入的单词中是否出现过,若没有出现,就输出原单词。所有要输出的单词按字典序排列输出。
思路:先小写化,然后二维的string排个序,然后用map建立string与int的映射,然后hash一下再放到set里面排个序,其实不hash应该也可以,因为set本身就有去重的功能

#include <iostream>
#include <string.h>
#include <map>
#include <set>
#include <algorithm>
using namespace std;

int main()
{
    string s;
    string str[1025],str2[1025];
    int k=0;
    map<string,int>hashs;
    set<string>jihe;
    while(getline(cin,s))
    {
        if(s[0]=='#')
            break;
        string tmp;
        for(int i=0; i<s.size(); i++)
        {
            if((s[i]>='A'&&s[i]<='Z')||(s[i]>='a'&&s[i]<='z'))
            {
                tmp+=s[i];
            }
            else
            {
                if(!tmp.empty())
                {
                    str[k++]=tmp;
                    tmp.clear();
                }
            }
        }
        if(!tmp.empty())
        {
            str[k++]=tmp;
            tmp.clear();
        }
    }
        //cout<<"****"<<endl;
        /*for(int kk=0; kk<k; kk++)
        {
            for(int j=0; j<str[kk].size(); j++)
            {
                if(str[kk][j]>='A'&&str[kk][j]<='Z')
                {
                    str2[kk][j]=str[kk][j]+32;
                    cout<<str[kk][j]<<" 1 "<<str2[kk][j]<<endl;
                    //cout<<100<<endl;
                    //cout<<<<endl;
                }
                else if(str[kk][j]>='a'&&str[kk][j]<='z')
                {
                    str2[kk][j]=str[kk][j];
                    cout<<str[kk][j]<<" 2 "<<str2[kk][j]<<endl;
                    //cout<<str[kk][j]<<endl;
                    //cout<<str2[kk][j]<<endl;
                }
                cout<<str2[kk]<<" 4444 "<<endl;
            }//cout<<str2[kk]<<endl;
            cout<<str[kk]<<" 3333  "<<endl;
            sort(str2[kk].begin(),str2[kk].end());

            hashs[str2[kk]]++;
        }*/
        string tmp2;
        for(int kk=0;kk<k;kk++)
        {
            for(int j=0; j<str[kk].size(); j++)
            {
                if(str[kk][j]>='A'&&str[kk][j]<='Z')
                {
                    tmp2+=str[kk][j]+32;
                }
                else if(str[kk][j]>='a'&&str[kk][j]<='z')
                {
                    tmp2+=str[kk][j];
                }
            }
            str2[kk]=tmp2;
            //cout<<tmp2<<" 100 "<<str2[kk]<<endl;
            tmp2.clear();
            sort(str2[kk].begin(),str2[kk].end());//此处居然可以这样排序,我还是第一次见到
            //cout<<str2[kk]<<endl;
            hashs[str2[kk]]++;
        }
        for(int kk=0; kk<k; kk++)
        {
            //cout<<hashs[str2[kk]]<<"****"<<str2[kk]<<"***"<<str[kk]<<endl;
            if(hashs[str2[kk]]==1)
            {
                jihe.insert(str[kk]);
            }
        }
        for(set<string>::iterator it=jihe.begin(); it!=jihe.end(); it++)
        {
            cout<<*it<<endl;
        }

    return 0;
}
/**
ladder came tape soon leader acme RIDE lone Dreis peat
ScAlE orb eye Rides dealer NotE derail LaCeS drIed
noel dire Disk mace Rob dries
ladder came tape soon leader acme RIDE lone Dreis peat ScAlE orb eye Rides dealer NotE derail LaCeS drIed noel dire Disk mace Rob dries
#
*/
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值