zoukankan      html  css  js  c++  java
  • java map 根据value排序取前n

    package com.cnblogs.test;
    
    import java.util.List;
    import java.util.Map;
    
    import com.google.common.collect.ImmutableMap;
    import com.google.common.collect.Lists;
    import com.google.common.collect.Maps;
    
    /**
     * @author toutou 2019/03/17
     */
    public class Java8future {
    
        public static void main(String[] args) {
            Map<String, Integer> map = ImmutableMap.of("gq", 7, "aa", 9, "zs", 66, "vv", 3);
            System.out.println("原始的map:" + map);
            System.out.println("key降序:" + sortByKey(map, true, 2));
            System.out.println("key升序:" + sortByKey(map, false, 2));
            System.out.println("value降序:" + sortByValue(map, true, 2));
            System.out.println("value升序:" + sortByValue(map, false, 2));
        }
    
        /**
         * Sort map by value
         *
         * @param map map source
         * @param isDesc 是否降序,true:降序,false:升序
         * @param limit 取前几条
         * @return 已排序map
         */
        public static <K, V extends Comparable<? super V>> Map<K, V> sortByValue(Map<K, V> map, boolean isDesc, int limit) {
            Map<K, V> result = Maps.newLinkedHashMap();
            if (isDesc) {
                map.entrySet().stream().sorted(Map.Entry.<K, V>comparingByValue().reversed()).limit(limit)
                        .forEach(e -> result.put(e.getKey(), e.getValue()));
            } else {
                map.entrySet().stream().sorted(Map.Entry.<K, V>comparingByValue())
                        .forEachOrdered(e -> result.put(e.getKey(), e.getValue()));
            }
            return result;
        }
    
        /**
         * Sort map by key
         *
         * @param map 待排序的map
         * @param isDesc 是否降序,true:降序,false:升序
         * @param limit 取前几条
         * @return 已排序map
         */
        public static <K extends Comparable<? super K>, V> Map<K, V> sortByKey(Map<K, V> map, boolean isDesc, int limit) {
            Map<K, V> result = Maps.newLinkedHashMap();
            if (isDesc) {
                map.entrySet().stream().sorted(Map.Entry.<K, V>comparingByKey().reversed()).limit(limit)
                        .forEachOrdered(e -> result.put(e.getKey(), e.getValue()));
            } else {
                map.entrySet().stream().sorted(Map.Entry.<K, V>comparingByKey())
                        .forEachOrdered(e -> result.put(e.getKey(), e.getValue()));
            }
            return result;
        }
    }
  • 相关阅读:
    WebView.简单使用_ZC代码
    WebView.简单使用_资料
    APK.错误解决_Theme.AppCompat.Light相关
    USB调试.红米Note4X
    Android_连接数据库_资料收集
    APK签名_ZC
    APK签名_资料
    ubuntu系统中代替windows系统中onenote软件--basket note pads
    firefox浏览器设置新页面后激活
    oracle 写declare例子
  • 原文地址:https://www.cnblogs.com/toutou/p/sort_map.html
Copyright © 2011-2022 走看看