zoukankan      html  css  js  c++  java
  • 华为机试 合并表记录

    题目描述

    数据表记录包含表索引和数值,请对表索引相同的记录进行合并,即将相同索引的数值进行求和运算,输出按照key值升序进行输出。


    输入描述:

    先输入键值对的个数
    然后输入成对的index和value值,以空格隔开

    输出描述:

    输出合并后的键值对(多行)


    输入

    4
    0 1
    0 2
    1 2
    3 4
    

    输出

    0 3
    1 2
    3 4


    #include<iostream>
    
    using namespace std;
    
    int main(){
        int n,key,value,id[1001]={0};
        cin>>n;
        while(n--){
            cin>>key>>value;
            id[key]+=value;
        }
        for(int i=0;i<1001;i++){
            if(id[i]>0)
                cout<<i<<' '<<id[i]<<endl;
        }
        return 0;
    }

    利用Map知识点

    #include<iostream>
    #include<map>
    
    using namespace std;
    
    int main()
    {
        int n;
        while(cin>>n)
        {
            map<int,int> table;
            while(n--)
            {
                int key, value;
                cin>>key>>value;
                if(!table[key])
                {
                    table[key]=value;
                }
                else
                    table[key]+=value;
            }
            for(map<int,int>::iterator id =table.begin();id!=table.end();++id)
            {
                cout<<id->first<<' '<<id->second<<endl;
            }
        }
        return 0; 
    }



  • 相关阅读:
    敏感信息脱敏实现
    SpringBoot集成Swagger2
    CSS三大特性
    background
    background-attachment
    background-position
    background-repeat
    background-image
    background-color
    CSS元素显示模式
  • 原文地址:https://www.cnblogs.com/JaminLin/p/9543312.html
Copyright © 2011-2022 走看看