码迷,mamicode.com
首页 > 其他好文 > 详细

TreeMap

时间:2020-07-10 20:44:52      阅读:46      评论:0      收藏:0      [点我收藏+]

标签:try   val   and   set   http   class   inter   warning   pat   

 

域:

技术图片

构造方法:

技术图片

技术图片

 

 

 

看下节点的结构:

技术图片

 

 

put:

 public V put(K key, V value) {
        Entry<K,V> t = root;
     //根节点 if (t == null) { compare(key, key); // type (and possibly null) check root = new Entry<>(key, value, null); size = 1; modCount++; return null; }
int cmp; Entry<K,V> parent; // split comparator and comparable paths Comparator<? super K> cpr = comparator; if (cpr != null) {
     //比较器不为null的话,通过比较器进行比较寻找插入位置 do { parent = t; cmp = cpr.compare(key, t.key); if (cmp < 0) t = t.left; else if (cmp > 0) t = t.right; else return t.setValue(value); } while (t != null); } else {
       //比较器为空的话,通过key的compare方法比较 if (key == null) throw new NullPointerException(); @SuppressWarnings("unchecked") Comparable<? super K> k = (Comparable<? super K>) key; do { parent = t; cmp = k.compareTo(t.key); if (cmp < 0) t = t.left; else if (cmp > 0) t = t.right; else return t.setValue(value); } while (t != null); } Entry<K,V> e = new Entry<>(key, value, parent);
     //插入树中 if (cmp < 0) parent.left = e; else parent.right = e;
    //进行红黑树重平衡 fixAfterInsertion(e); size++; modCount++; return null; }

 

TreeMap

标签:try   val   and   set   http   class   inter   warning   pat   

原文地址:https://www.cnblogs.com/lccsblog/p/13280969.html

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