Stream排序Map集合

最近小編本身一我的在負責一個項目的後臺開發,其中有一部分是統計相關的功能,因此須要一些排序或者分組的操做,以前這種操做小編以爲仍是比較麻煩的,雖熱有一些現成的工具類,可是工具類的寫法也是比較複雜的,可是若是使用java8 stream流的話就比較簡單了,而且代碼量會大大的減小,下面總結幾個對map的操做。java

一、map 根據value排序工具

Map<String,BigDecimal> map =new HashMap<>();
map.put("one", 0.08);
map.put("two", 0.1);
map.put("three", 0.2);
map.put("four", 0.91);

上面是項目中的一箇中間結果,咱們須要對這個map根據value值倒序排序,下面給出工具類:.net

public <K, V extends Comparable<? super V>> Map<K, V> sortByValue(Map<K, V> map) {
    Map<K, V> result = new LinkedHashMap<>();

    map.entrySet().stream()
            .sorted(Map.Entry.<K, V>comparingByValue()
                    .reversed()).forEachOrdered(e -> result.put(e.getKey(), e.getValue()));
    return result;
}

固然若是咱們想根據map的key進行排序,須要對上面的工具類進行小小的修改,代碼以下:code

public <K extends Comparable<? super K>, V > Map<K, V> sortByKey(Map<K, V> map) {
Map<K, V> result = new LinkedHashMap<>();blog

map.entrySet().stream()
            .sorted(Map.Entry.<K, V>comparingByKey()
                    .reversed()).forEachOrdered(e -> result.put(e.getKey(), e.getValue()));
    return result;
}

咱們能夠看到,若是咱們須要根據key排序,就須要讓key 繼承 Comparable ,也就說咱們須要對待排序的字段繼承 Comparable接口。另外一個問題就是,上面的這種寫法排序效果是 降序排序,若是咱們須要升序排序的話,只須要將上面的.reversed()關鍵字限制去掉便可。排序

public <K, V extends Comparable<? super V>> Map<K, V> sortByValue(Map<K, V> map) {
Map<K, V> result = new LinkedHashMap<>();繼承

map.entrySet().stream()
            .sorted(Map.Entry.<K, V>comparingByValue()
                    ).forEachOrdered(e -> result.put(e.getKey(), e.getValue()));
    return result;
}

map根據value倒序排序接口

map.entrySet().stream().sorted(Collections.reverseOrder(Map.Entry.comparingByValue())).forEach(System.out::println);

 

map根據key倒序排序three

map.entrySet().stream().sorted(Collections.reverseOrder(Map.Entry.comparingByKey())).forEach(System.out::println);

 

map根據value正序排序ci

map.entrySet().stream().sorted(Comparator.comparing(e -> e.getValue())).forEach(System.out::println);

 

map根據key正序排序

map.entrySet().stream().sorted(Comparator.comparing(e -> e.getKey())).forEach(System.out::println);

參考

原文連接:https://blog.csdn.net/hao134838/article/details/80780622
原文連接:https://blog.csdn.net/qq_41011894/article/details/88405944

相關文章
相關標籤/搜索