题解 | #合并表记录#

合并表记录

https://www.nowcoder.com/practice/de044e89123f4a7482bd2b214a685201

import java.util.*;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int num = in.nextInt();
        HashMap<Integer, Integer> map = new HashMap<>();
        // 注意 hasNext 和 hasNextLine 的区别
        while (num > 0) { // 注意 while 处理多个 case
            int key = in.nextInt();
            int value = in.nextInt();
            if (map.containsKey(key)) {
                Integer a = map.get(key);
                map.put(key, a + value);
            } else
                map.put(key, value);
            num--;
        }
        map.entrySet().stream().sorted(new Comparator<Map.Entry<Integer, Integer>>() {
            @Override
            public int compare(Map.Entry<Integer, Integer> o1,
                               Map.Entry<Integer, Integer> o2) {
                return o1.getKey() - o2.getKey();
            }
        }).forEach(entry-> System.out.println(entry.getKey() + " " + entry.getValue()));

    }
}

全部评论

相关推荐

粗心的雪碧不放弃:纯学历问题,我这几个月也是一直优化自己的简历,后来发现优化到我自己都觉得牛逼的时候,发现面试数量也没有提升,真就纯学历问题
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务