• SortedMap接口的实现类TreeMap介绍和实现Comparator自定义比较器(转)


    与SortedSet接口类似,SortedMap也是一个结构,待排序的Map,其一个比较常用的实现类是TreeMap。

    TreeMap的put(K key, V value)方法在每添加一个元素时,都会自动排序。

    构造方法:
    TreeMap()
    使用键的自然顺序构造一个新的、空的树映射。
    TreeMap(Comparator<? super K> comparator)
    构造一个新的、空的树映射,该映射根据给定比较器进行排序。
    TreeMap(Map<? extends K,? extends V> m)
    构造一个与给定映射具有相同映射关系的新的树映射,该映射根据其键的自然顺序 进行排序。

    创建自定义的Comparator比较器:

    复制代码
    //这里根据字符的ASCII码大小进行降序排序:
    class MyComparator2 implements Comparator<String>{
        @Override
        public int compare(String o1, String o2) {
    
            return o2.compareTo(o1);
        }
    }
    复制代码

    在SortedSet中,当保存对象时一定要自定义一个比较器Comparator,但是在SortedMap中,保存对象却不一定要,因为 SortedMap是比较Key而不是Value,所以创建的自定义比较器也是针对Key的,比如上面创建的Comparator是针对Key类型为 String的Map进行排序。

    Map<String, String> map = new TreeMap<String, String>(new MyComparator2());

    对于TreeMap的迭代和HashMap一样,同样有三种方法,以下是常用的其中一种:

    复制代码
    Set<Map.Entry<Integer, Integer>> set = map.entrySet();
    for(Iterator<Map.Entry<Integer, Integer>> iter = set.iterator(); iter.hasNext();){
        Map.Entry<Integer, Integer> entry = iter.next();
        Integer key = entry.getKey();
        Integer value = entry.getValue();
        System.out.println(key + ":" + value);
    }
    复制代码

    对于Map来说,不能使用Collections的静态方法,但是可以通过他的values方法获取到Collections进行调用:

    Collection<Integer> cols = map.values();
    Integer max = Collections.max(cols);
    除了文章中有特别说明,均为IT宅原创文章,转载请以链接形式注明出处。
    本文链接:http://www.itzhai.com/treemap-sortedmap-interface-implementation-class-introduction-and-implementation-of-custom-comparator-comparator.html
    关键字: 
  • 相关阅读:
    js 数组方法比较
    js 知识点
    vuex、redux、mobx 对比
    读SRE Google运维解密有感(二)
    读SRE Google运维解密有感(一)
    001_深度剖析什么是 SLI、SLO和SLA?
    006_mac osx 应用跨屏幕
    005_ss-link.info的ping探测工具
    015_sublime插件管理及所有非常有用插件
    001_软件waf
  • 原文地址:https://www.cnblogs.com/Berryxiong/p/6240510.html
Copyright © 2020-2023  润新知