UVA12504 Updating a Dictionary(STL)

Posted noble_

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVA12504 Updating a Dictionary(STL)相关的知识,希望对你有一定的参考价值。

题目

题目
?


?

分析

第一次用stringstream,真TMD的好用
?


?

代码

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int n;
    cin>>n;
    getchar();//回车
    while(n--)
    {
        string s1,s2;
        getline(cin,s1);
        getline(cin,s2);
        for(int i=0;i<s1.length();i++)
            if(!isalpha(s1[i]) && !isdigit(s1[i])) s1[i]=' ';
        for(int i=0;i<s2.length();i++)
            if(!isalpha(s2[i]) && !isdigit(s2[i])) s2[i]=' '; 
        int l1=0,l2=0;
        map<string,string> m;
        map<string,string>::iterator it;
        vector<string> c,d,e;
        stringstream ss(s1),ss2(s2);
        string a,b;
        while(ss>>a)
        {
            ss>>b; m[a]=b; l1++;
        }
        while(ss2>>a)
        {
            ss2>>b; l2++;
            if(!m.count(a)) c.push_back(a);
            else if(m[a]!=b) d.push_back(a);
            if(m.count(a))
            {
                it=m.find(a);
                m.erase(it);
            }
        }
        sort(d.begin(),d.end());
        sort(c.begin(),c.end());
        if(c.size())
        {
            cout<<"+";
            for(int i=0;i<c.size();i++)
            {
                cout<<c[i];
                if(i==c.size()-1) cout<<endl;
                else cout<<",";
            }
        }
        if(m.size())
        {
            cout<<"-";
            for(map<string,string>::iterator i=m.begin();i!=m.end();i++)
            {
                if(i!=m.begin()) cout<<',';
                cout<<i->first;
            }
            cout<<endl;
        }
        if(d.size())
        {
            cout<<"*";
            for(int i=0;i<d.size();i++)
            {
                cout<<d[i];
                if(i==d.size()-1) cout<<endl;
                else cout<<',';
            }
        }
        if(!c.size()&&!d.size()&&!m.size()) puts("No changes");
        cout<<endl;
    }
    return 0;
}

以上是关于UVA12504 Updating a Dictionary(STL)的主要内容,如果未能解决你的问题,请参考以下文章

UVA12504 Updating a Dictionary(STL)

Python学习笔记-Dicti和set

ORA-12504:oracle连接错误

PL/SQL连接Oracle,提示ORA-12504:TNS监听程序在connect-data中未获得service-name

20170923xlVBA_UpdateClientDetailSQL_Dictionary

ORA-12504: TNS: 监听程序在 CONNECT_DATA 中未获得 SERVICE_NAME