java map按值排序_Java Map按键(Key)排序和按值(Value)排序

Map排序的方式有很多种,两种比较常用的方式:按键排序(sort by key), 按值排序(sort by value)。

1、按键排序

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

Java代码  a7f269126b02aab075e63856119ee774.png

public class MapSortDemo {

public static void main(String[] args) {

Map map = new TreeMap();

map.put("KFC", "kfc");

map.put("WNBA", "wnba");

map.put("NBA", "nba");

map.put("CBA", "cba");

Map resultMap = sortMapByKey(map);    //按Key进行排序

for (Map.Entry entry : resultMap.entrySet()) {

System.out.println(entry.getKey() + " " + entry.getValue());

}

}

/**

* 使用 Map按key进行排序

* @param map

* @return

*/

public static Map sortMapByKey(Map map) {

if (map == null || map.isEmpty()) {

return null;

}

Map sortMap = new TreeMap(new MapKeyComparator());

sortMap.putAll(map);

return sortMap;

}

}

//比较器类

public class MapKeyComparator implements Comparator{

public int compare(String str1, String str2) {

return str1.compareTo(str2);

}

}

2、按值排序

按值排序就相对麻烦些了,貌似没有直接可用的数据结构能处理类似需求,需要我们自己转换一下。

Map本身按值排序是很有意义的,很多场合下都会遇到类似需求,可以认为其值是定义的某种规则或者权重。

原理:将待排序Map中的所有元素置于一个列表中,接着使用Collections的一个静态方法 sort(List list, Comparator super T> c)

来排序列表,同样是用比较器定义比较规则。排序后的列表中的元素再依次装入Map,为了肯定的保证Map中元素与排序后的List中的元素的顺序一致,使用了LinkedHashMap数据类型。

Java代码  a7f269126b02aab075e63856119ee774.png

实现代码

public class MapSortDemo {

public static void main(String[] args) {

Map map = new TreeMap();

map.put("KFC", "kfc");

map.put("WNBA", "wnba");

map.put("NBA", "nba");

map.put("CBA", "cba");

Map resultMap = sortMapByValue(map); //按Value进行排序

for (Map.Entry entry : resultMap.entrySet()) {

System.out.println(entry.getKey() + " " + entry.getValue());

}

}

/**

* 使用 Map按value进行排序

* @param map

* @return

*/

public static Map sortMapByValue(Map map) {

if (map == null || map.isEmpty()) {

return null;

}

Map sortedMap = new LinkedHashMap();

List> entryList = new ArrayList>(map.entrySet());

Collections.sort(entryList, new MapValueComparator());

Iterator> iter = entryList.iterator();

Map.Entry tmpEntry = null;

while (iter.hasNext()) {

tmpEntry = iter.next();

sortedMap.put(tmpEntry.getKey(), tmpEntry.getValue());

}

return sortedMap;

}

}

//比较器类

public class MapValueComparator implements Comparator> {

public int compare(Entry me1, Entry me2) {

return me1.getValue().compareTo(me2.getValue());

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值