zoukankan      html  css  js  c++  java
  • java Map 之 排序(key,value)

    一:起因:

    (1)现实中须要Map容器进行排序的情况非常多非常多:由于Map<key,value>键值对的存储结构特别是HashMap的结构是非常优秀的,数据存储就难免对其进行排序;

    (2)数据处理,仅仅要用到映射关系的,离不开Map,这在数据处理中是很有用的,而排序是对数据的进一步处理;

    (3)Map排序的方式有非常多种,两种比較经常使用的方式:按键排序(sort by key), 按值排序(sort by value)

    二:排序的算法

    (1)按键排序

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

    // 主类
    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;
    	}
    }
    
    //比較器类
    public class MapKeyComparator implements Comparator<String>{
    	public int compare(String str1, String str2) {
    		return str1.compareTo(str2);
    	}
    }
    说明一:比較器类,MapKeyComparator implements Comparator<String> 中的參数是通过类似模板类的Comparator<>传进来的,再重载其compare()函数就可以,比較简单。

    说明二:主类中的 sortMapByKey(Map<String, String> map) 函数中声明TreeMap<String,String>(new MapKeyComparator())进行key值排序,再调用sortMap.putAll(map) 拷贝到新的map中。

    说明三:数据是用TreeMap存储的。

    (2)按值排序

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

    Map本身按值排序是非常有意义的,非常多场合下都会遇到类似需求,能够觉得其值是定义的某种规则或者权重。

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

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

    LinkedHashMap数据类型

    实现代码

    // 主类
    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 = 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> map) {
    		if (map == null || map.isEmpty()) {
    			return null;
    		}
    		Map<String, String> sortedMap = new LinkedHashMap<String, String>();
    		List<Map.Entry<String, String>> entryList = new ArrayList<Map.Entry<String, String>>(map.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;
    	}
    }
    
    //比較器类
    public class MapValueComparator implements Comparator<Map.Entry<String, String>> {
    	public int compare(Entry<String, String> me1, Entry<String, String> me2) {
    		return me1.getValue().compareTo(me2.getValue());
    	}
    }

    说明一:比較器类,MapValueComparator implements Comparator<Map.Entry<String,String>> 中的參数是通过类似模板类的Comparator<>传进来的,再重载其compare()函数就可以,仅仅是參数是Map.Entry<String,String>的接口类,compare()函数的两个參数也对应的变为Entry<String,String>。

    说明二:主类中的 sortMapByKey(Map<String, String> map) 函数中声明LinkedHashMap<String,String>再用ArrayList<Map.Entry<String,String>>(map.entrySet())进行List形式的存储,再调用collections.sort(entryList,

    new MapKeyComparator())进行排序;最后把entryList转化为LinkedMap

    说明三:数据是用TreeMap存储的。

  • 相关阅读:
    HDU 5821 Ball (贪心)
    hdu 5826 physics (物理数学,积分)
    HDU 5831 Rikka with Parenthesis II (贪心)
    HDU 2669 Romantic (扩展欧几里得定理)
    POJ 2442 Sequence
    HDU 3779 Railroad(记忆化搜索)
    博客园首页新随笔联系管理订阅 随笔- 524 文章- 0 评论- 20 hdu-5810 Balls and Boxes(概率期望)
    hdu 5813 Elegant Construction (构造)
    hdu 5818 Joint Stacks (优先队列)
    C#字段和属性
  • 原文地址:https://www.cnblogs.com/mfrbuaa/p/4187584.html
Copyright © 2011-2022 走看看