• 一、概述 {#1-_概述}
  • 二、 put函数 {#2-_put函数}
  • 三、 get函数 {#3-_get函数}
  • 四、successor后继 {#4-_successor后继}

    一、概述 {#1-_概述}

    A Red-Black tree based NavigableMap implementation. The map is sorted according to the natural ordering of its keys, or by a Comparator provided at map creation time, depending on which constructor is used.
    This implementation provides guaranteed log(n) time cost for the containsKey, get, put and remove operations. Algorithms are adaptations of those in Cormen, Leiserson, and Rivest’s Introduction to Algorithms.

    之前已经学习过HashMap和LinkedHashMap了,HashMap不保证数据有序,LinkedHashMap保证数据可以保持插入顺序,而如果我们希望Map可以保持key的大小顺序的时候,我们就需要利用TreeMap了。

    1. TreeMap<Integer, String> tmap = new TreeMap<Integer, String>();
    2. tmap.put(1, "语文");
    3. tmap.put(3, "英语");
    4. tmap.put(2, "数学");
    5. tmap.put(4, "政治");
    6. tmap.put(5, "历史");
    7. tmap.put(6, "地理");
    8. tmap.put(7, "生物");
    9. tmap.put(8, "化学");
    10. for(Entry<Integer, String> entry : tmap.entrySet()) {
    11. System.out.println(entry.getKey() + ": " + entry.getValue());
    12. }

    其大致的结构如下所示:
    Java集合——TreeMap - 图1
    使用红黑树的好处是能够使得树具有不错的平衡性,这样操作的速度就可以达到log(n)的水平了。具体红黑树的实现不在这里赘述,可以参考数据结构之红黑树、wikipedia-红黑树等的实现。

    二、 put函数 {#2-_put函数}

    Associates the specified value with the specified key in this map.If the map previously contained a mapping for the key, the old value is replaced.

    如果存在的话,old value被替换;如果不存在的话,则新添一个节点,然后对做红黑树的平衡操作。

    1. public V put(K key, V value) {
    2. Entry<K,V> t = root;
    3. if (t == null) {
    4. compare(key, key); // type (and possibly null) check
    5. root = new Entry<>(key, value, null);
    6. size = 1;
    7. modCount++;
    8. return null;
    9. }
    10. int cmp;
    11. Entry<K,V> parent;
    12. // split comparator and comparable paths
    13. Comparator<? super K> cpr = comparator;
    14. // 如果该节点存在,则替换值直接返回
    15. if (cpr != null) {
    16. do {
    17. parent = t;
    18. cmp = cpr.compare(key, t.key);
    19. if (cmp < 0)
    20. t = t.left;
    21. else if (cmp > 0)
    22. t = t.right;
    23. else
    24. return t.setValue(value);
    25. } while (t != null);
    26. }
    27. else {
    28. if (key == null)
    29. throw new NullPointerException();
    30. @SuppressWarnings("unchecked")
    31. Comparable<? super K> k = (Comparable<? super K>) key;
    32. do {
    33. parent = t;
    34. cmp = k.compareTo(t.key);
    35. if (cmp < 0)
    36. t = t.left;
    37. else if (cmp > 0)
    38. t = t.right;
    39. else
    40. return t.setValue(value);
    41. } while (t != null);
    42. }
    43. // 如果该节点未存在,则新建
    44. Entry<K,V> e = new Entry<>(key, value, parent);
    45. if (cmp < 0)
    46. parent.left = e;
    47. else
    48. parent.right = e;
    49. // 红黑树平衡调整
    50. fixAfterInsertion(e);
    51. size++;
    52. modCount++;
    53. return null;
    54. }

    三、 get函数 {#3-_get函数}

    get函数则相对来说比较简单,以log(n)的复杂度进行get。

    1. final Entry<K,V> getEntry(Object key) {
    2. // Offload comparator-based version for sake of performance
    3. if (comparator != null)
    4. return getEntryUsingComparator(key);
    5. if (key == null)
    6. throw new NullPointerException();
    7. @SuppressWarnings("unchecked")
    8. Comparable<? super K> k = (Comparable<? super K>) key;
    9. Entry<K,V> p = root;
    10. // 按照二叉树搜索的方式进行搜索,搜到返回
    11. while (p != null) {
    12. int cmp = k.compareTo(p.key);
    13. if (cmp < 0)
    14. p = p.left;
    15. else if (cmp > 0)
    16. p = p.right;
    17. else
    18. return p;
    19. }
    20. return null;
    21. }
    22. public V get(Object key) {
    23. Entry<K,V> p = getEntry(key);
    24. return (p==null ? null : p.value);
    25. }

    四、successor后继 {#4-_successor后继}

    TreeMap是如何保证其迭代输出是有序的呢?其实从宏观上来讲,就相当于树的中序遍历(LDR)。我们先看一下迭代输出的步骤

    1. for(Entry<Integer, String> entry : tmap.entrySet()) {
    2. System.out.println(entry.getKey() + ": " + entry.getValue());
    3. }

    根据The enhanced for statement,for语句会做如下转换为:

    1. for(Iterator<Map.Entry<String, String>> it = tmap.entrySet().iterator() ; tmap.hasNext(); ) {
    2. Entry<Integer, String> entry = it.next();
    3. System.out.println(entry.getKey() + ": " + entry.getValue());
    4. }

    it.next()的调用中会使用nextEntry调用successor这个是过的后继的重点,具体实现如下:

    1. static <K,V> TreeMap.Entry<K,V> successor(Entry<K,V> t) {
    2. if (t == null)
    3. return null;
    4. else if (t.right != null) {
    5. // 有右子树的节点,后继节点就是右子树的“最左节点”
    6. // 因为“最左子树”是右子树的最小节点
    7. Entry<K,V> p = t.right;
    8. while (p.left != null)
    9. p = p.left;
    10. return p;
    11. } else {
    12. // 如果右子树为空,则寻找当前节点所在左子树的第一个祖先节点
    13. // 因为左子树找完了,根据LDR该D了
    14. Entry<K,V> p = t.parent;
    15. Entry<K,V> ch = t;
    16. // 保证左子树
    17. while (p != null && ch == p.right) {
    18. ch = p;
    19. p = p.parent;
    20. }
    21. return p;
    22. }
    23. }

    怎么理解这个successor呢?只要记住,这个是中序遍历就好了,L-D-R。具体细节如下:

    a. 空节点,没有后继
    b. 有右子树的节点,后继就是右子树的“最左节点”
    c. 无右子树的节点,后继就是该节点所在左子树的第一个祖先节点

    a.好理解,不过b, c,有点像绕口令啊,没关系,上图举个例子就懂了!

    有右子树的节点,节点的下一个节点,肯定在右子树中,而右子树中“最左”的那个节点则是右子树中最小的一个,那么当然是右子树的“最左节点”,就好像下图所示:
    Java集合——TreeMap - 图2

    无右子树的节点,先找到这个节点所在的左子树(右图),那么这个节点所在的左子树的父节点(绿色节点),就是下一个节点。
    Java集合——TreeMap - 图3