Java小知识-----Map 按Key排序和按Value排序
生活随笔
收集整理的這篇文章主要介紹了
Java小知识-----Map 按Key排序和按Value排序
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
Map排序的方式有很多種,這里記錄下自己總結(jié)的兩種比較常用的方式:按鍵排序(sort by key), 按值排序(sort by value)。
1、按鍵排序
jdk內(nèi)置的java.util包下的TreeMap<K,V>既可滿足此類需求,向其構(gòu)造方法?TreeMap(Comparator<? super K> comparator) ?傳入我們自定義的比較器即可實現(xiàn)按鍵排序。
代碼:
1 public class MapSortDemo { 2 3 public static void main(String[] args) { 4 5 Map<String, String> map = new TreeMap<String, String>(); 6 7 map.put("KFC", "kfc"); 8 map.put("WNBA", "wnba"); 9 map.put("NBA", "nba"); 10 map.put("CBA", "cba"); 11 12 Map<String, String> resultMap = sortMapByKey(map); //按Key進(jìn)行排序 13 14 for (Map.Entry<String, String> entry : resultMap.entrySet()) { 15 System.out.println(entry.getKey() + " " + entry.getValue()); 16 } 17 } 18 19 /** 20 * 使用 Map按key進(jìn)行排序 21 * @param map 22 * @return 23 */ 24 public static Map<String, String> sortMapByKey(Map<String, String> map) { 25 if (map == null || map.isEmpty()) { 26 return null; 27 } 28 29 Map<String, String> sortMap = new TreeMap<String, String>( 30 new MapKeyComparator()); 31 32 sortMap.putAll(map); 33 34 return sortMap; 35 } 36 } 37 38 39 比較器類 40 41 class MapKeyComparator implements Comparator<String>{ 42 43 @Override 44 public int compare(String str1, String str2) { 45 46 return str1.compareTo(str2); 47 } 48 }2、按值排序
原理:將待排序Map中的所有元素置于一個列表中,接著使用Collections的一個靜態(tài)方法 sort(List<T> list, Comparator<? super T> c)?
來排序列表,同樣是用比較器定義比較規(guī)則。排序后的列表中的元素再依次裝入Map,為了肯定的保證Map中元素與排序后的List中的元素的順序一致,使用了LinkedHashMap數(shù)據(jù)類型。
比較器類
class MapValueComparator implements Comparator<Map.Entry<String, String>> {@Overridepublic int compare(Entry<String, String> me1, Entry<String, String> me2) {return me1.getValue().compareTo(me2.getValue());} }?
原作者鏈接:https://www.cnblogs.com/zhujiabin/p/6164826.html
?
轉(zhuǎn)載于:https://www.cnblogs.com/charles8866/p/10972041.html
總結(jié)
以上是生活随笔為你收集整理的Java小知识-----Map 按Key排序和按Value排序的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 老是梦到下雨是怎么回事
- 下一篇: 梦到小鸟破壳是胎梦吗