Java Map 按Key排序和按Value排序

Map排序的方式有不少種,這裏記錄下本身總結的兩種比較經常使用的方式:按鍵排序(sort by key), 按值排序(sort by value)。java

一、按鍵排序數據結構

jdk內置的java.util包下的TreeMap<K,V>既可知足此類需求,向其構造方法 TreeMap(Comparator<? super K> comparator)  傳入咱們自定義的比較器便可實現按鍵排序。ide

實現代碼spa

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;
    }
}


比較器類

class MapKeyComparator implements Comparator<String>{

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

二、按值排序code

按值排序就相對麻煩些了,貌似沒有直接可用的數據結構能處理相似需求,須要咱們本身轉換一下。
Map自己按值排序是頗有意義的,不少場合下都會遇到相似需求,能夠認爲其值是定義的某種規則或者權重。blog

原理:將待排序Map中的全部元素置於一個列表中,接着使用Collections的一個靜態方法 sort(List<T> list, Comparator<? super T> c) 
來排序列表,一樣是用比較器定義比較規則。排序後的列表中的元素再依次裝入Map,爲了確定的保證Map中元素與排序後的List中的元素的順序一致,使用了LinkedHashMap數據類型。排序

實現代碼get

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;
    }
}

比較器類it

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());
    }
}
相關文章
相關標籤/搜索