jdk1.8-map根据value排序,取前n位(及简)

public static void main(String[] args) {
    Map mapRepeat = new HashMap<>();

    mapRepeat.put("aa", 1);
    mapRepeat.put("bb", 45);
    mapRepeat.put("cc", 32);
    mapRepeat.put("dd", 226);
    mapRepeat.put("ee", 16);
    mapRepeat.put("ff", 320);
    mapRepeat.put("gg", 99);


    Map mapRepeat1 = new HashMap<>();
    mapRepeat1.put("aa", 1);
    mapRepeat1.put("bb", 5);
//.sorted标签,对map根据value排序
//.map方法把map的key转成set
//.subList取前n位,下图(0,5位)

//.retainAll(拿key-set,去与map碰撞),判断交集并覆盖之前的list,取出相交个数

//list的value就是相交的 key,如需value取出即可

    List mobileList = mapRepeat.entrySet().stream()
            .sorted((Map.Entry o1, Map.Entry o2) -> o2.getValue() - o1.getValue())
            .map(entry -> entry.getKey()).collect(Collectors.toList())
            .subList(0, 5);
    mobileList.retainAll(mapRepeat1.keySet());

    System.out.println(JSON.toJSONString(mobileList.size()));
}

你可能感兴趣的:(jdk1.8)