Map排序的方式有很多种,这里记录下自己总结的两种比较常用的方式:按键排序(sort by key), 按值排序(sort by value)。

1、按键排序

jdk内置的java.util包下的TreeMap<K,V>既可满足此类需求,向其构造方法 TreeMap(Comparator<? super K> comparator)  传入我们自定义的比较器即可实现按键排序。

实现代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
public class MapSortDemo {
 
    public static void main(String[] args) {
 
        Map<String, String> map = new TreeMap<String, String>();
 
        map.put("KFC", "kfc");
        map.put("WNBA", "wnba");
        map.put("NBA", "nba");
        map.put("CBA", "cba");
 
        Map<String, String> resultMap = sortMapByKey(map);    //按Key进行排序
 
        for (Map.Entry<String, String> entry : resultMap.entrySet()) {
            System.out.println(entry.getKey() + " " + entry.getValue());
        }
    }
     
    /**
     * 使用 Map按key进行排序
     * @param map
     * @return
     */
    public static Map<String, String> sortMapByKey(Map<String, String> map) {
        if (map == null || map.isEmpty()) {
            return null;
        }
 
        Map<String, String> sortMap = new TreeMap<String, String>(
                new MapKeyComparator());
 
        sortMap.putAll(map);
 
        return sortMap;
    }
}

比较器类

1
2
3
4
5
6
7
8
class MapKeyComparator implements Comparator<String>{
 
    @Override
    public int compare(String str1, String str2) {
         
        return str1.compareTo(str2);
    }
}

2、按值排序

按值排序就相对麻烦些了,貌似没有直接可用的数据结构能处理类似需求,需要我们自己转换一下。
Map本身按值排序是很有意义的,很多场合下都会遇到类似需求,可以认为其值是定义的某种规则或者权重。

原理:将待排序Map中的所有元素置于一个列表中,接着使用Collections的一个静态方法 sort(List<T> list, Comparator<? super T> c) 
来排序列表,同样是用比较器定义比较规则。排序后的列表中的元素再依次装入Map,为了肯定的保证Map中元素与排序后的List中的元素的顺序一致,使用了LinkedHashMap数据类型。

实现代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
public class MapSortDemo {
 
    public static void main(String[] args) {
 
        Map<String, String> map = new TreeMap<String, String>();
 
        map.put("KFC", "kfc");
        map.put("WNBA", "wnba");
        map.put("NBA", "nba");
        map.put("CBA", "cba");
 
        Map<String, String> resultMap = sortMapByKey(map);    //按Key进行排序
//      Map<String, String> resultMap = sortMapByValue(map); //按Value进行排序
 
        for (Map.Entry<String, String> entry : resultMap.entrySet()) {
            System.out.println(entry.getKey() + " " + entry.getValue());
        }
    }
     
    /**
     * 使用 Map按value进行排序
     * @param map
     * @return
     */
    public static Map<String, String> sortMapByValue(Map<String, String> oriMap) {
        if (oriMap == null || oriMap.isEmpty()) {
            return null;
        }
        Map<String, String> sortedMap = new LinkedHashMap<String, String>();
        List<Map.Entry<String, String>> entryList = new ArrayList<Map.Entry<String, String>>(
                oriMap.entrySet());
        Collections.sort(entryList, new MapValueComparator());
 
        Iterator<Map.Entry<String, String>> iter = entryList.iterator();
        Map.Entry<String, String> tmpEntry = null;
        while (iter.hasNext()) {
            tmpEntry = iter.next();
            sortedMap.put(tmpEntry.getKey(), tmpEntry.getValue());
        }
        return sortedMap;
    }
}

比较器类

1
2
3
4
5
6
7
8
class MapValueComparator implements Comparator<Map.Entry<String, String>> {
 
    @Override
    public int compare(Entry<String, String> me1, Entry<String, String> me2) {
 
        return me1.getValue().compareTo(me2.getValue());
    }
}

最新文章

  1. angularjs和ajax的结合使用 (二)
  2. python from __future__ import division
  3. Docker - Install docker on CentOS
  4. 页面遮罩层,并且阻止页面body滚动。bootstrap模态框原理
  5. Uva 10305 给任务排序
  6. check running processes in Ubuntu
  7. codeblocks快捷键(转载)
  8. 单元测试工具 SmokeTest
  9. js两种生成对象模式(公有成员和成员私有)
  10. div 宽高相等2种实现方式
  11. 【PL/SQL Developer】动态执行表不可访问,本会话的自动统计被禁止
  12. Exception in thread &quot;main&quot; org.apache.ibatis.binding.BindingException: Type interface com.test.bean.groupMapper is not known to the MapperRegistry.
  13. noip第19课资料
  14. html绝对路径,相对路径
  15. 线程的中断.interrupt
  16. Go语言之高级篇beego框架之config、httplib、context
  17. 如何使用 lsyncd 实时同步并执行 shell 命令
  18. Spring Cloud(Dalston.SR5)--Eureka 注册中心搭建
  19. Excel的合并解析
  20. spring boot1.5以上版本@ConfigurationProperties取消location注解后的替代方案 cannot resolve method location

热门文章

  1. Xcode 添加代码块
  2. 30道四则运算题目---课堂作业--软件工程c++
  3. C#开源系统大汇总(转)
  4. IOC框架的认识
  5. MyEclipse 关闭拼写检查、JavaScript的检查Build、xml、JSP的Bulid检查
  6. 设计模式之建造者模式(Builder)
  7. Noip2015总结
  8. [工作积累] OpenGL ES3.0: glInvalidateFramebuffer
  9. ASP.NET MVC与RAILS3的比较
  10. JavaScript 文件上传类型判断