制作比较器指定比较规则

Collections.sort可以以特定的内置规则对数据进行排序,若是想改变内置的排序顺序,就必须使用比较器。
比较器:定义一个新类实现Comparator接口,并重写campare方法。
下面举个例子吧:我想按照value值的降序排列

//这段代码在同一个类里面
   Map<String, Integer> map = new HashMap<>();
   map.put("数字电子技术",1);
   map.put("模拟电子技术",2);
   map.put("电力电子技术",3);
   List<String> list = new ArrayList<String>(map.KeySet());
   Collections.sort(list,new mycmp(map));


 class mycmp implements Comparator<String> {
        private Map<String,Integer> map = null;
        public mycmp(Map<String,Integer> map){
            this.map =map;
        }


        @Override
        public int compare(String s, String t1) {
            int count1= map.get(s);
            int count2= map.get(t1);
            if(count1>count2){
                return -1;
            }
            if(count1<count2){
                return 1;
            }
            else  {
                return s.compareTo(t1);
            }
        }
        }

你可能感兴趣的:(制作比较器指定比较规则)