热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

map集合根据value值排序

publicclassMapSortedDemo{publicstaticvoidmain(String[]args){MapmapnewHashMap();map.put(1

public class MapSortedDemo {
public static void main(String[] args) {
Map map = new HashMap<>();
map.put(1, "22");
map.put(2, "able");
map.put(3, "disk");
map.put(4, "banana");
map.put(5, "001");
sortMap(map);
}
/**
* map 集合根据value值排序
*
* @param map
* @return
*/
public static > Map sortMap(Map map) {
List> list = new LinkedList>(map.entrySet());
list.sort((o1, o2) -> {
// 按照 value进行排序
// return (o2.getValue()).compareTo(o1.getValue()); // 20 ,3,1 倒叙
return (o1.getValue()).compareTo(o2.getValue()); // 1 ,3,20 正序
// 按照key 进行排序
// return ((String) o1.getKey()).compareTo((String) o2.getKey()); // k1 ,k2,k3 正序
// return ((String) o2.getKey()).compareTo((String) o1.getKey()); // k3 ,k2,k1 倒叙
});
Map result = new LinkedHashMap();
for (Map.Entry entry : list) {
result.put(entry.getKey(), entry.getValue());
}
System.out.println("result = " + result);
return result;
}
}
运行:
result = {5=001, 1=22, 2=able, 4=banana, 3=disk}

不积跬步,无以至千里;不积小流,无以成江海。



推荐阅读
author-avatar
周鑫先生_852
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有