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;
        }
    }
  • 相关阅读:
    Logwatch的配置与使用
    Redirect HTTP to HTTPS on Tomcat
    RedHat7搭建yum源服务器
    卸载RedHat7自带的yum,安装并使用网易163源
    15个Linux Yum命令实例--安装/卸载/更新
    GitHub详细教程
    RedHat7 Git 安装使用
    RedHat7 SELinux
    RedHat7配置IdM server
    IIS Shared Configuration
  • 原文地址:https://www.cnblogs.com/toutou/p/sort_map.html
Copyright © 2011-2022 走看看