java根据HashMap中的值将其元素排序

Posted 伊布桔岛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java根据HashMap中的值将其元素排序相关的知识,希望对你有一定的参考价值。

思路:HashMap或Map本身没有排序功能,若要进行较轻松的排序,可利用ArrayList中的sort方法

例子:

import java.util.ArrayList;
import java.util.Comparator;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class MapSorter {

    public static void main(String[] args){
        
        Map<String, Integer> map = new HashMap<String, Integer>();
        List<Map.Entry<String, Integer>> list = new ArrayList<>();
        
        map.put("Five", 5);
        map.put("Seven", 7);
        map.put("Eight", 8);
        map.put("One",1);
        map.put("Two",2);
        map.put("Three", 3);
        
        for(Map.Entry<String, Integer> entry : map.entrySet()){
             list.add(entry); //将map中的元素放入list中
        }

        list.sort(new Comparator<Map.Entry<String, Integer>>(){
              @Override
               public int compare(Map.Entry<String, Integer> o1, Map.Entry<String, Integer> o2) {
                    return o2.getValue()-o1.getValue();} 
                   //逆序(从大到小)排列,正序为“return o1.getValue()-o2.getValue”
        }); 
        
        for(Map.Entry<String, Integer> entry: list){
              System.out.println(entry);
        }
    }
}

/*
* 输出结果:
* Eight=8
* Seven=7
* Five=5
* Three=3
* Two=2
* One=1
*/

以上是关于java根据HashMap中的值将其元素排序的主要内容,如果未能解决你的问题,请参考以下文章

Java中HashMap和LinkedHashMap以及TreeMap的区别

根据数据框中单元格中的值将颜色应用于单元格

如何实现Java中hashmap的value值是对象的时候的排序

如何根据值对 HashMap 的元素进行排序? [复制]

把一个ArrayList中的值,存储到一个HashMap中

选择排序的JavaScript实现