加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

UVa 12504 - Updating a Dictionary(数据处理)

发布时间:2020-12-14 02:56:53 所属栏目:大数据 来源:网络整理
导读:给出旧字典和新字典,输出字典的变化增加+、减少-、更改*。 保存字典之后对比就好,但是注意在没有那项变动时不要多输出符号。 #includeiostream#includealgorithm#includecstdio#includevector#includeset#includemapusing namespace std;struct key_value{

给出旧字典和新字典,输出字典的变化增加+、减少-、更改*。

保存字典之后对比就好,但是注意在没有那项变动时不要多输出符号。

#include<iostream>
#include<algorithm>
#include<cstdio>
#include<vector>
#include<set>
#include<map>
using namespace std;
struct key_value{
    string key,value;
};
set<string>key;
vector<string>change[3];
map<string,string>dict[2];
int main(){
    int t,flag=1;
    key_value x,y;
    cin>>t;
    getchar();
    while(t--){
        dict[0].clear();
        dict[1].clear();
        for(int i=0;i<3;i++) change[i].clear();
        change[0].push_back("+");
        change[1].push_back("-");
        change[2].push_back("*");
        key.clear();
        char c;
        for(int i=0;i<2;){
            c=getchar();
            if(c=='{'){
                flag=1;
                x=y;
                continue;
            }
            if(c=='}'){
                if(x.key!=""&&x.value!=""){
                    dict[i][x.key]=x.value;
                    key.insert(x.key);
                }
                i++;
                getchar();
                continue;
            }
            if(c==','||c==':'){
                flag=!flag;
                if(c==','){
                    dict[i][x.key]=x.value;
                    key.insert(x.key);
                    x=y;
                }
                continue;
            }
            if(flag) x.key+=c;
            else x.value+=c;
        }
        for(set<string>::iterator it=key.begin();it!=key.end();it++){
            if(!dict[0].count(*it)) change[0].push_back(*it);
            else if(!dict[1].count(*it)) change[1].push_back(*it);
            else if(dict[0][*it]!=dict[1][*it]) change[2].push_back(*it);
        }
        int k=0;
        for(int i=0;i<3;i++){
            int first=2;
            if(change[i].size()-1){
                for(int j=0;j<change[i].size();j++){
                    if(first) first--;
                    else cout<<",";
                    cout<<change[i][j];
                }
                cout<<endl;
                k++;
            }
        }
        if(!k) cout<<"No changes"<<endl;
        cout<<endl;
    }
    return 0;
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读