华为机试—— 8.合并表记录
Posted bopo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了华为机试—— 8.合并表记录相关的知识,希望对你有一定的参考价值。
题目
解法
import java.util.Map.Entry; import java.util.Scanner; import java.util.TreeMap; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); TreeMap<Integer, Integer> map = new TreeMap<>(); int num = sc.nextInt(); for(int i=0;i<num;i++){ int key = sc.nextInt(); int value = sc.nextInt(); if(map.containsKey(key)){ map.replace(key, map.get(key) + value); }else { map.put(key, value); } } for(Entry<Integer, Integer> entry: map.entrySet()){ System.out.print(entry.getKey() + " "); System.out.println(entry.getValue()); } } }
以上是关于华为机试—— 8.合并表记录的主要内容,如果未能解决你的问题,请参考以下文章