算法 合并表记录
Posted liuruoqian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了算法 合并表记录相关的知识,希望对你有一定的参考价值。
题目描述
数据表记录包含表索引和数值(int范围的整数),请对表索引相同的记录进行合并,即将相同索引的数值进行求和运算,输出按照key值升序进行输出。
输入描述:
先输入键值对的个数
然后输入成对的index和value值,以空格隔开
输出描述:
输出合并后的键值对(多行)
示例1
输出
复制0 3 1 2 3 4
思路:使用hash表
#include <iostream>
#include <algorithm>
#include <string.h>
#include <string>
#include <map>
using namespace std;
int main()
{
int Sum[1024] = {0};
int n = 0;
int x = 0,y = 0;
cin >>n;
for(int i = 0; i < n; i++)
{
cin>>x>>y;
Sum[x]+=y;
}
for(int i = 0; i < 1024; i++){
if(Sum[i]>0){
cout << i <<" "<< Sum[i] << endl;
}
}
return 0;
}
注意如果这里长度太长就不能用int,并且注意最后不能用ends代替" "
以上是关于算法 合并表记录的主要内容,如果未能解决你的问题,请参考以下文章