码迷,mamicode.com
首页 > 编程语言 > 详细

TreeMap排序

时间:2017-05-30 19:36:03      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:treemap   排序   

import java.util.Comparator;
import java.util.HashMap;
import java.util.Map;
import java.util.TreeMap;

public class MapSort {  
    
    public  TreeMap<String,Double> sort(HashMap<String,Double> map){
        ValueComparator bvc =  new ValueComparator(map); 
        TreeMap<String,Double> sorted_map = new TreeMap<String,Double>(bvc);  
         sorted_map.putAll(map);  
        return sorted_map;
        
    }
    public static void main(String[] args) {  
  
        HashMap<String,Double> map = new HashMap<String,Double>();  
        map.put("A",99.5);  
        map.put("B",67.4);  
        map.put("C",67.4);  
        map.put("D",67.3);  
        TreeMap<String,Double> sorted_map = new MapSort().sort(map);
        System.out.println("unsorted map: "+map);  
        System.out.println("results: "+sorted_map);  
    }  
}  
  
class ValueComparator implements Comparator<String> {  
  
    Map<String, Double> base;  
    public ValueComparator(Map<String, Double> base) {  
        this.base = base;  
    }  
  
    // Note: this comparator imposes orderings that are inconsistent with equals.      
    public int compare(String a, String b) {  
        if (base.get(a) >= base.get(b)) {  
            return -1;  
        } else {  
            return 1;  
        } // returning 0 would merge keys  
    }  
}


TreeMap排序

标签:treemap   排序   

原文地址:http://wuxiaozhu.blog.51cto.com/7942143/1930672

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!