Map按键排序(sort by key)

Posted ixan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Map按键排序(sort by key)相关的知识,希望对你有一定的参考价值。

 

1.需求:已知有如下map,要求按照key倒序排列遍历。

Map<String, Integer> map = new HashMap<>();
map.put("1", 1);
map.put("3", 3);
map.put("2", 2);
map.put("5", 5);
map.put("4", 4);

 

 2.实现

①自定义排序方法,返回有序map

private Map<String,Integer> sortMapByKey(Map<String, Integer> map) {
    if(CollectionUtils.isEmpty(map)){
        return null;
    }
    //treeMap适用于按自然顺序或自定义顺序遍历键(key)
    Map<String,Integer> treeMap = new TreeMap<>(new MapKeyComparator());
    treeMap.putAll(map);
    return treeMap;
}

 

②自定义比较器,实现Comparator接口

/**
 * 自定义比较器
 */
class MapKeyComparator implements Comparator<String>{

    @Override
    public int compare(String str1, String str2) {
        return str2.compareTo(str1);
    }
}

 

③遍历有序map

@Test
public void test1() {
    Map<String, Integer> map = new HashMap<>();
    map.put("1", 1);
    map.put("3", 3);
    map.put("2", 2);
    map.put("5", 5);
    map.put("4", 4);
    Map<String,Integer> resultMap = sortMapByKey(map);
    for (Map.Entry<String,Integer> entry:resultMap.entrySet()){
        System.out.println(entry.getKey()+":"+entry.getValue());
    }
}

 

3.Java8实现按照key倒序排列遍历

public static void main(String[] args) {
    Map<String, Integer> map = new HashMap<>();
    map.put("1", 1);
    map.put("3", 3);
    map.put("2", 2);
    map.put("5", 5);
    map.put("4", 4);
    Map<String, Integer> resultMap = new TreeMap<>((str1, str2) -> str2.compareTo(str1));
    resultMap.putAll(map);
    resultMap.forEach((key,value)-> System.out.println(key+":"+value));
}

 

以上是关于Map按键排序(sort by key)的主要内容,如果未能解决你的问题,请参考以下文章

如何按值对散列进行排序

c++ map基础知识、按键排序、按值排序

Python对字典分别按键(key)和值(value)进行排序

为啥我不能在使用 sort_by_key 对向量进行排序时使用返回引用的键函数?

LEETCODE:Sort Characters By Frequency

python 字典按键值排序