当前位置:   article > 正文

Java数据结构——树——红黑树_java 中树相关的知识点结合源码分析

java 中树相关的知识点结合源码分析

目录

一、简介

二、实现思路

2.1 插入节点

插入总结:通过对以上源码的解读,我们可以得出:

2.2 删除节点

删除总结:通过对上面源码的解读,我们可以得出:

三、代码仿现


   注:在开始阅读此文章之前,是默认读者掌握了节点的旋转规则,如果对旋转规则不了解的同学,可以先看我的这篇博客

    我把删除和插入节点用xmind进行了总结,上传到了此博客

一、简介

      红黑树 (Red Black Tree) 是一种二叉查找树,是在计算机科学中用到的一种数据结构,典型的用途是实现关联数组

      它是在1972年由 Rudolf Bayer 发明的,当时被称为平衡二叉B树 (symmetric binary B-trees)。后来,在1978年被 Leo J. Guibas 和 Robert Sedgewick 修改为如今的“红黑树”。

       红黑树和其他二叉查找树类似,都是在进行插入和删除操作时通过特定操作保持二叉查找树的性质,从而获得较高的查找性能。

       它虽然是复杂的,但它的最坏情况运行时间也是非常良好的,并且在实践中是高效的:它可以在 O(log n) 时间内做查找,插入和删除,这里的 n 是树中元素的数目。

                                                                                                                                                                       ——百度百科

二、实现思路

 在Java中很多对象比如TreeMap,HashMap(1.8)以及Linux虚拟内存的管理,都使用了红黑树的数据结构

想要理解红黑树,需要先知道红黑树是什么?它有什么特点?

红黑树是一种含有红黑结点并能自平衡的二叉查找树。

它必须满足下面性质:

  • 性质1:每个节点要么是黑色,要么是红色。
  • 性质2:根节点是黑色。
  • 性质3:每个叶子节点(NIL)是黑色。
  • 性质4:每个红色结点的两个子结点一定都是黑色。
  • 性质5:任意一结点到每个叶子结点的路径都包含数量相同的黑结点。

这里我通过TreeMap的源码来和大家一起理解这个神秘的红黑树

2.1 插入节点

  1. /**
  2. * Associates the specified value with the specified key in this map.
  3. * If the map previously contained a mapping for the key, the old
  4. * value is replaced.
  5. *
  6. * @param key key with which the specified value is to be associated
  7. * @param value value to be associated with the specified key
  8. *
  9. * @return the previous value associated with {@code key}, or
  10. * {@code null} if there was no mapping for {@code key}.
  11. * (A {@code null} return can also indicate that the map
  12. * previously associated {@code null} with {@code key}.)
  13. * @throws ClassCastException if the specified key cannot be compared
  14. * with the keys currently in the map
  15. * @throws NullPointerException if the specified key is null
  16. * and this map uses natural ordering, or its comparator
  17. * does not permit null keys
  18. */
  19. public V put(K key, V value) {
  20. Entry<K,V> t = root;
  21. if (t == null) {
  22. compare(key, key); // type (and possibly null) check
  23. root = new Entry<>(key, value, null);
  24. size = 1;
  25. modCount++;
  26. return null;
  27. }
  28. int cmp;
  29. Entry<K,V> parent;
  30. // split comparator and comparable paths
  31. Comparator<? super K> cpr = comparator;
  32. // 找到待添加节点的父节点并修改value
  33. if (cpr != null) {
  34. do {
  35. parent = t;
  36. cmp = cpr.compare(key, t.key);
  37. if (cmp < 0)
  38. t = t.left;
  39. else if (cmp > 0)
  40. t = t.right;
  41. else
  42. return t.setValue(value);
  43. } while (t != null);
  44. }
  45. else {
  46. if (key == null)
  47. throw new NullPointerException();
  48. @SuppressWarnings("unchecked")
  49. Comparable<? super K> k = (Comparable<? super K>) key;
  50. do {
  51. parent = t;
  52. cmp = k.compareTo(t.key);
  53. if (cmp < 0)
  54. t = t.left;
  55. else if (cmp > 0)
  56. t = t.right;
  57. else
  58. return t.setValue(value);
  59. } while (t != null);
  60. }
  61. // 创建待添加节点并给其赋予相关的父节点
  62. Entry<K,V> e = new Entry<>(key, value, parent);
  63. // 将创建出来的节点放入合适的位置
  64. if (cmp < 0)
  65. parent.left = e;
  66. else
  67. parent.right = e;
  68. // 平衡红黑树的一系列操作(重点)
  69. fixAfterInsertion(e);
  70. // 树中的条目数
  71. size++;
  72. // 树的结构修改数
  73. modCount++;
  74. return null;
  75. }
  76. /** From CLR */
  77. private void fixAfterInsertion(Entry<K,V> x) {
  78. // 新插入的节点颜色默认为红色
  79. x.color = RED;
  80. // 如果新插入节点的父节点颜色为红色 违反了性质4
  81. while (x != null && x != root && x.parent.color == RED) {
  82. // 如果新插入节点的父节点为其父节点的左子节点时
  83. if (parentOf(x) == leftOf(parentOf(parentOf(x)))) {
  84. // 获取当前插入节点的叔叔节点
  85. Entry<K,V> y = rightOf(parentOf(parentOf(x)));
  86. // 如果此叔叔节点的颜色为红色
  87. if (colorOf(y) == RED) {
  88. // 将插入节点的父节点和叔叔节点的颜色设置为黑色
  89. setColor(parentOf(x), BLACK);
  90. setColor(y, BLACK);
  91. // 将插入节点的祖父节点的颜色设置为红色
  92. setColor(parentOf(parentOf(x)), RED);
  93. // 将祖父节点设置为插入的节点
  94. x = parentOf(parentOf(x));
  95. // 如果叔叔节点的颜色为黑色
  96. } else {
  97. // 如果当前插入节点是其父节点的右子节点时
  98. if (x == rightOf(parentOf(x))) {
  99. // 将两节点进行左旋操作
  100. x = parentOf(x);
  101. rotateLeft(x);
  102. }
  103. // 将新插入节点的父节点的颜色设置为黑色
  104. setColor(parentOf(x), BLACK);
  105. // 并将其祖父节点的颜色设置为红色
  106. setColor(parentOf(parentOf(x)), RED);
  107. // 将其祖父节点与其左子节点进行右旋
  108. rotateRight(parentOf(parentOf(x)));
  109. }
  110. // 如果新插入节点的父节点为其父节点的右子节点时
  111. } else {
  112. // 找到其叔叔节点
  113. Entry<K,V> y = leftOf(parentOf(parentOf(x)));
  114. // 如果当前叔叔节点为红色
  115. if (colorOf(y) == RED) {
  116. // 将新插入节点的父节点和其叔叔节点设置为黑色
  117. setColor(parentOf(x), BLACK);
  118. setColor(y, BLACK);
  119. // 并将其祖父节点设置为红色 并将祖父节点设置为新插入的节点
  120. setColor(parentOf(parentOf(x)), RED);
  121. x = parentOf(parentOf(x));
  122. } else {
  123. // 如果当前叔叔节点为黑色 并且插入节点为其父节点的左子节点
  124. if (x == leftOf(parentOf(x))) {
  125. // 右旋其父节点和插入节点
  126. x = parentOf(x);
  127. rotateRight(x);
  128. }
  129. // 将其父节点的颜色设置为黑色 并将其祖父节点的颜色设置为红色再进行左旋
  130. setColor(parentOf(x), BLACK);
  131. setColor(parentOf(parentOf(x)), RED);
  132. rotateLeft(parentOf(parentOf(x)));
  133. }
  134. }
  135. }
  136. // 设置根节点的颜色为黑色
  137. root.color = BLACK;
  138. }
  139. /** From CLR */
  140. private void rotateLeft(Entry<K,V> p) {
  141. if (p != null) {
  142. // 选中新插入的节点
  143. Entry<K,V> r = p.right;
  144. // 将其父节点的右子节点赋值为新插入节点的左子节点
  145. p.right = r.left;
  146. if (r.left != null)
  147. // 将新插入节点的左子节点的父节点设置为新插入节点的父节点
  148. r.left.parent = p;
  149. // 将新插入节点的父节点设置为祖父节点
  150. r.parent = p.parent;
  151. // 判断当前祖父节点是否为根节点
  152. if (p.parent == null)
  153. // 将根节点设置为新插入的节点
  154. root = r;
  155. // 如果当前祖父节点的左子节点是其新插入节点的父节点
  156. else if (p.parent.left == p)
  157. // 将当前祖父节点的左子节点设置为新插入的节点
  158. p.parent.left = r;
  159. else
  160. // 将当前祖父节点的右子节点设置为新插入的节点
  161. p.parent.right = r;
  162. // 将当前新插入节点的左子节点设置为其父节点
  163. r.left = p;
  164. // 将旋转后父节点的父节点设置为当前新插入的节点
  165. p.parent = r;
  166. }
  167. }
  168. /** From CLR */
  169. // 操作方式与左旋相同,方向不一样而已
  170. private void rotateRight(Entry<K,V> p) {
  171. if (p != null) {
  172. Entry<K,V> l = p.left;
  173. p.left = l.right;
  174. if (l.right != null) l.right.parent = p;
  175. l.parent = p.parent;
  176. if (p.parent == null)
  177. root = l;
  178. else if (p.parent.right == p)
  179. p.parent.right = l;
  180. else p.parent.left = l;
  181. l.right = p;
  182. p.parent = l;
  183. }
  184. }

通过对以上源码的解读,我们可以得出:

新插入的节点颜色默认为红色

如果新插入节点的父节点颜色为红色 违反了性质4

       1.新插入节点的父节点为其父节点的左子节点时,找到其叔叔节点

              1.1  如果叔叔节点的颜色为红色时

                      1.1.1 将插入节点的父节点和叔叔节点的颜色设置为黑色,并且将插入节点的祖父节点的颜色设置为红色,再将祖父节点设置为插入的节点

             1.2  如果叔叔节点的颜色为黑色时

                        1.2.1 如果当前插入节点是其父节点的右子节点时,先将新插入节点和其父节点进行左旋操作,再进行1.2.2操作

                        1.2.2 将新插入节点的父节点的颜色设置为黑色,并将其祖父节点的颜色设置为红色,最后将其祖父节点与其左子节点进行右旋

     2.新插入节点的父节点为其父节点的右子节点时,找到其叔叔节点

             2.1 如果当前叔叔节点为红色

                      2.1.1 将新插入节点的父节点和其叔叔节点设置为黑色,并将其祖父节点设置为红色,最后将祖父节点设置为新插入的节点

             2.2 如果叔叔节点的颜色为黑色时

                       2.2.1 如果当前插入节点为其父节点的左子节点 ,先将新插入节点和其父节点进行右旋操作。再进行2.2.2操作

                       2.2.2 将新插入节点的父节点的颜色设置为黑色,并将其祖父节点的颜色设置为红色,最后将其祖父节点与其左子节点进行左旋

     3. 最后设置根节点的颜色为黑色

2.2 删除节点

  1. /**
  2. * Delete node p, and then rebalance the tree.
  3. */
  4. private void deleteEntry(Entry<K,V> p) {
  5. modCount++;
  6. size--;
  7. // If strictly internal, copy successor's element to p and then make p
  8. // point to successor.
  9. // 当前待删除的节点有两个子节点
  10. if (p.left != null && p.right != null) {
  11. // 找到当前节点的前驱或者后继子节点,当前方法采用后继
  12. Entry<K,V> s = successor(p);
  13. // 使用后继子节点替换掉当前待删除的节点
  14. p.key = s.key;
  15. p.value = s.value;
  16. p = s;
  17. } // p has 2 children
  18. // Start fixup at replacement node, if it exists.
  19. // 找到待删除节点的子节点,可能为null
  20. Entry<K,V> replacement = (p.left != null ? p.left : p.right);
  21. // 如果找到子节点
  22. if (replacement != null) {
  23. // Link replacement to parent
  24. // 将当前子节点的父节点指向待删除结点的父节点
  25. replacement.parent = p.parent;
  26. // 如果待删除结点的父节点为空,说明待删除结点为根节点
  27. if (p.parent == null)
  28. // 将根节点替换为当前子节点
  29. root = replacement;
  30. // 如果当前待删除的节点是其父节点的左子节点
  31. else if (p == p.parent.left)
  32. // 将父节点的左子节点替换为待删除节点的子节点 换句话说就是孩子抢了父亲的位置
  33. p.parent.left = replacement;
  34. else
  35. // 如果待删除的节点是其父节点的右子节点,则将父节点的右子节点替换为待删除节点的子节点
  36. p.parent.right = replacement;
  37. // Null out links so they are OK to use by fixAfterDeletion.
  38. // 空出待删除节点的所有链接,以便后续操作
  39. p.left = p.right = p.parent = null;
  40. // Fix replacement
  41. // 如果待删除的节点的颜色为黑色,违反了性质5
  42. if (p.color == BLACK)
  43. // 传入其子节点
  44. fixAfterDeletion(replacement);
  45. // 如果待删除节点的父节点为null,说明为根节点,并且没有子节点,则删除当前树
  46. } else if (p.parent == null) { // return if we are the only node.
  47. root = null;
  48. // 如果待删除节点的父节点不为null,且没有子节点
  49. } else { // No children. Use self as phantom replacement and unlink.
  50. // 如果当前待删除结点的颜色为黑色,违反性质5,则需要做平衡操作
  51. if (p.color == BLACK)
  52. fixAfterDeletion(p);
  53. // 从待删除结点的父节点上删除该节点 (从父亲的角度上清除父子关系)
  54. if (p.parent != null) {
  55. if (p == p.parent.left)
  56. p.parent.left = null;
  57. else if (p == p.parent.right)
  58. p.parent.right = null;
  59. // 将待删除结点的父节点连接删除 (从孩子的角度上清除父子关系)
  60. p.parent = null;
  61. }
  62. }
  63. }
  64. /**
  65. * Returns the successor of the specified Entry, or null if no such.
  66. */
  67. static <K,V> TreeMap.Entry<K,V> successor(Entry<K,V> t) {
  68. if (t == null)
  69. return null;
  70. // 返回当前节点的后继节点
  71. else if (t.right != null) {
  72. Entry<K,V> p = t.right;
  73. while (p.left != null)
  74. p = p.left;
  75. return p;
  76. // 当前节点没有右子节点,返回null
  77. } else {
  78. Entry<K,V> p = t.parent;
  79. Entry<K,V> ch = t;
  80. // 当前节点不为根节点且为其父节点的右子节点,则返回当前节点的父节点
  81. while (p != null && ch == p.right) {
  82. ch = p;
  83. p = p.parent;
  84. }
  85. return p;
  86. }
  87. }
  88. /** From CLR */
  89. private void fixAfterDeletion(Entry<K,V> x) {
  90. // 当前节点不是根节点,且颜色为黑色
  91. while (x != root && colorOf(x) == BLACK) {
  92. // 如果当前节点是其父节点的左子节点
  93. if (x == leftOf(parentOf(x))) {
  94. // 找到其兄弟节点
  95. Entry<K,V> sib = rightOf(parentOf(x));
  96. // 如果当前兄弟节点的颜色为红色
  97. if (colorOf(sib) == RED) {
  98. // 将当前兄弟节点的颜色设置为黑色
  99. setColor(sib, BLACK);
  100. // 其父节点设置为红色
  101. setColor(parentOf(x), RED);
  102. // 左旋两节点
  103. rotateLeft(parentOf(x));
  104. // 将兄弟节点重新赋值为旋转后的父节点的右子节点
  105. sib = rightOf(parentOf(x));
  106. }
  107. // 如果当前兄弟节点的左右节点的子节点均为黑色
  108. if (colorOf(leftOf(sib)) == BLACK &&
  109. colorOf(rightOf(sib)) == BLACK) {
  110. // 将当前兄弟节点的颜色设置为红色 并且将当前节点指向父节点(左右树同时减少一个黑节点,对于整棵树来说,可能会破坏其平衡性,所以需要将当前父节点作为整颗树平衡条件)
  111. setColor(sib, RED);
  112. x = parentOf(x);
  113. } else {
  114. // 如果当前兄弟节点只有其右子节点为黑色
  115. if (colorOf(rightOf(sib)) == BLACK) {
  116. // 将当前兄弟节点的左子节点赋值为黑色
  117. setColor(leftOf(sib), BLACK);
  118. // 将当前兄弟节点颜色设置为红色
  119. setColor(sib, RED);
  120. // 右旋当前兄弟节点
  121. rotateRight(sib);
  122. // 将兄弟节点重新赋值为旋转后节点
  123. sib = rightOf(parentOf(x));
  124. }
  125. // 将当前兄弟节点的颜色设置为x的父节点的颜色
  126. setColor(sib, colorOf(parentOf(x)));
  127. // 将其父节点的颜色设置为黑色
  128. setColor(parentOf(x), BLACK);
  129. // 将当前兄弟节点的右子节点的颜色设置为黑色
  130. setColor(rightOf(sib), BLACK);
  131. // 左旋父节点
  132. rotateLeft(parentOf(x));
  133. // 将当前节点设置为根节点 跳出循环
  134. x = root;
  135. }
  136. // 如果当前节点是其父节点的右子节点
  137. } else { // symmetric
  138. // 找到当前节点的兄弟节点
  139. Entry<K,V> sib = leftOf(parentOf(x));
  140. // 如果当前兄弟节点是红色
  141. if (colorOf(sib) == RED) {
  142. // 将当前兄弟节点设置为黑色
  143. setColor(sib, BLACK);
  144. // 将父节点设置为红色
  145. setColor(parentOf(x), RED);
  146. // 右旋父节点
  147. rotateRight(parentOf(x));
  148. // 将兄弟节点重新赋值为旋转后的节点
  149. sib = leftOf(parentOf(x));
  150. }
  151. // 如果当前兄弟节点的左右子节点均为黑色
  152. if (colorOf(rightOf(sib)) == BLACK &&
  153. colorOf(leftOf(sib)) == BLACK) {
  154. // 将当前兄弟节点的颜色设置为红色
  155. setColor(sib, RED);
  156. // 将当前节点指向其父节点
  157. x = parentOf(x);
  158. } else {
  159. // 如果当前兄弟节点的左子节点为黑色
  160. if (colorOf(leftOf(sib)) == BLACK) {
  161. // 将当前兄弟节点的右子节点设置为黑色 并将当前兄弟节点的颜色设为红色
  162. setColor(rightOf(sib), BLACK);
  163. setColor(sib, RED);
  164. // 左旋当前兄弟节点
  165. rotateLeft(sib);
  166. // 将当前兄弟节点重新赋值为旋转后的节点(更新兄弟节点)
  167. sib = leftOf(parentOf(x));
  168. }
  169. // 将当前兄弟节点的颜色设置为其父节点的颜色
  170. setColor(sib, colorOf(parentOf(x)));
  171. // 将其父节点与当前兄弟节点的左子节点颜色设置为黑色
  172. setColor(parentOf(x), BLACK);
  173. setColor(leftOf(sib), BLACK);
  174. // 右旋其父节点
  175. rotateRight(parentOf(x));
  176. // 将当前节点设置为根节点
  177. x = root;
  178. }
  179. }
  180. }
  181. // 将当前节点的颜色设置为黑色
  182. setColor(x, BLACK);
  183. }

删除节点相对于插入节点来说比较复杂,不过没关系,掌握了插入的情况下学删除是比较容易的。换汤不换药

通过对上面源码的解读,我们可以得出:

1. 待删除的节点有两个子节点

    1.1 找到当前待删除节点的前驱或者后继子节点(当前方法采用后继),并且使用后继子节点替换掉当前待删除的节点,最后再删除后继子节点,转到2

2.待删除的节点有一个子节点

    2.1 如果待删除的节点的颜色为红色,用其子节点替换掉待删除的节点

    2.2 如果待删除的节点的颜色为黑色,并且其子节点为红色,用当前子节点替换掉待删除的节点然后将颜色改为黑色

    2.3 如果待删除的节点的颜色为黑色,并且其子节点为黑色,找到当前子节点的兄弟节点

          2.3.1 如果当前兄弟节点是其父节点的右子节点

                     2.3.1.1 如果当前兄弟节点的颜色为红色,则将当前兄弟节点的颜色设置为黑色,父节点设置为红色,以父节点为中心左旋两节点并且将兄弟节点重新赋值为旋转后的父节点的右子节点

                     2.3.1.2 如果当前兄弟节点的左右节点的子节点均为黑色,则将当前兄弟节点的颜色设置为红色,并且将当前子节点指向父节点

                     2.3.1.3 如果当前兄弟节点只有其右子节点为黑色,则将当前兄弟节点的左子节点赋值为黑色,并且将当前兄弟节点的颜色设置为红色,再右旋当前兄弟节点,最后将兄弟节点重新赋值为旋转后节点,再进行2.3.1.4 操作

                      2.3.1.4  将当前兄弟节点的颜色设置为其父节点的颜色,并将其父节点的颜色设置为黑色,然后将当前兄弟节点的右子节点的颜色设置为黑色,再以其父节点为中心左旋两节点,最后将当前节点设置为根节点,以便跳出循环

         2.3.2 如果当前兄弟节点是其父节点的左子节点

                     2.3.2.1 如果当前兄弟节点的颜色为红色,则将当前兄弟节点的颜色设置为黑色,父节点设置为红色,以父节点为中心右旋两节点并且将兄弟节点重新赋值为旋转后的父节点的左子节点

                     2.3.2.2 如果当前兄弟节点的左右节点的子节点均为黑色,则将当前兄弟节点的颜色设置为红色,并且将当前子节点指向父节点

                     2.3.2.3 如果当前兄弟节点只有其左子节点为黑色,将当前兄弟节点的右子节点赋值为黑色,并且将当前兄弟节点的颜色设置为红色,再左旋当前兄弟节点,最后将兄弟节点重新赋值为旋转后节点,再进行2.3.2.4操作

                     2.3.2.4  将当前兄弟节点的颜色设置为其父节点的颜色,并将其父节点的颜色设置为黑色,然后将当前兄弟节点的左子节点的颜色设置为黑色,再以其父节点为中心右旋两节点,最后将当前节点设置为根节点(跳出循环)

3.待删除的节点没有子节点

    3.1 待删除的节点为红色,直接删除

    3.2 待删除的节点为黑色,将当前待删除的节点作为平衡条件进行以上操作,再删除该节点 
4.将当前节点的颜色设置为黑色

图片我就不画了,如果大家觉得没图片不太好理解的话,我推荐这篇博客                                                

三、代码仿现

我是通过模仿TreeMap来实现红黑树,里边没有任何注释 

大家可以自行解读来检验自己有没有掌握

  1. @AllArgsConstructor
  2. @NoArgsConstructor
  3. @Data
  4. @ToString
  5. public class RedBlackNode {
  6. public Integer key;
  7. public Integer value;
  8. public RedBlackNode leftNode;
  9. public RedBlackNode rightNode;
  10. public RedBlackNode parentNode;
  11. public String color;
  12. @Override
  13. public String toString() {
  14. JSONObject jsonObject = new JSONObject();
  15. jsonObject.put("key",this.key);
  16. jsonObject.put("value",this.value);
  17. jsonObject.put("leftNode",this.leftNode);
  18. jsonObject.put("rightNode",this.rightNode);
  19. jsonObject.put("parentNode",this.parentNode);
  20. jsonObject.put("color",this.color);
  21. return jsonObject.toJSONString();
  22. }
  23. }
  1. /**
  2. * @Author: Eating melons the masses
  3. * @Date: 2020/3/15 15:42
  4. */
  5. public class RedBlackTree {
  6. public static final String BLACK = "black";
  7. public static final String RED = "red";
  8. public RedBlackNode root;
  9. public RedBlackNode insert(Integer key,Integer value){
  10. RedBlackNode thisNode = root;
  11. if (root == null){
  12. root = new RedBlackNode(key,value,null,null,null,BLACK);
  13. return root;
  14. }
  15. int cmp;
  16. RedBlackNode parent = thisNode;
  17. RedBlackNode current = thisNode;
  18. while (current != null){
  19. parent = current;
  20. int cos = compass(parent.key,key);
  21. if (cos > 0){
  22. current = current.leftNode;
  23. }else if (cos < 0){
  24. current = current.rightNode;
  25. }else {
  26. current.setValue(value);
  27. return current;
  28. }
  29. }
  30. RedBlackNode redBlackNode = new RedBlackNode(key, value, null, null, parent, RED);
  31. cmp = compass(parent.key,key);
  32. if (cmp > 0){
  33. parent.leftNode = redBlackNode;
  34. }else {
  35. parent.rightNode = redBlackNode;
  36. }
  37. addNodeToTree(redBlackNode);
  38. return root;
  39. }
  40. public RedBlackNode delete(int key){
  41. RedBlackNode redBlackNode = findNodeByKey(key);
  42. if (redBlackNode.leftNode != null && redBlackNode.rightNode != null){
  43. RedBlackNode minNode = minNode(redBlackNode.rightNode);
  44. redBlackNode.key = minNode.key;
  45. redBlackNode.value = minNode.value;
  46. redBlackNode = minNode;
  47. }
  48. RedBlackNode onlyChild = redBlackNode.leftNode == null ? redBlackNode.rightNode : redBlackNode.leftNode;
  49. if (onlyChild != null){
  50. onlyChild.parentNode = redBlackNode.parentNode;
  51. if (redBlackNode.parentNode == null){
  52. root = onlyChild;
  53. }else if (redBlackNode == redBlackNode.parentNode.leftNode){
  54. redBlackNode.parentNode.leftNode = onlyChild;
  55. }else {
  56. redBlackNode.parentNode.rightNode = onlyChild;
  57. }
  58. redBlackNode.leftNode = redBlackNode.parentNode = redBlackNode.rightNode = null;
  59. if (redBlackNode.color == BLACK){
  60. deleteNodeByTree(onlyChild);
  61. }
  62. }else if (redBlackNode.parentNode == null){
  63. root = null;
  64. }else {
  65. if (redBlackNode.color == BLACK){
  66. deleteNodeByTree(redBlackNode);
  67. }
  68. if (redBlackNode.parentNode != null){
  69. if (redBlackNode == redBlackNode.parentNode.leftNode){
  70. redBlackNode.parentNode.leftNode = null;
  71. }else {
  72. redBlackNode.parentNode.rightNode = null;
  73. }
  74. redBlackNode.parentNode = null;
  75. }
  76. }
  77. return root;
  78. }
  79. private void deleteNodeByTree(RedBlackNode child) {
  80. while (child != root && child.color == BLACK){
  81. if (child == child.parentNode.leftNode){
  82. RedBlackNode broNode = child.parentNode.rightNode;
  83. if (broNode.color == RED){
  84. broNode.setColor(BLACK);
  85. child.parentNode.setColor(RED);
  86. ll_rotate(child.parentNode);
  87. broNode = child.parentNode.rightNode;
  88. }else if (broNode.leftNode.color == BLACK &&
  89. broNode.rightNode.color == BLACK){
  90. broNode.setColor(RED);
  91. child = child.parentNode;
  92. }else {
  93. if (broNode.rightNode.color == BLACK){
  94. broNode.leftNode.setColor(BLACK);
  95. rr_rotate(broNode);
  96. broNode = child.parentNode.rightNode;
  97. }
  98. broNode.setColor(child.parentNode.color);
  99. child.parentNode.setColor(BLACK);
  100. broNode.rightNode.setColor(BLACK);
  101. ll_rotate(child.parentNode);
  102. child = root;
  103. }
  104. }else {
  105. RedBlackNode broNode = child.parentNode.leftNode;
  106. if (broNode.color == RED){
  107. broNode.setColor(BLACK);
  108. child.parentNode.setColor(RED);
  109. rr_rotate(child.parentNode);
  110. broNode = child.parentNode.leftNode;
  111. }else if (broNode.leftNode.color == BLACK &&
  112. broNode.rightNode.color == BLACK){
  113. broNode.setColor(RED);
  114. child = child.parentNode;
  115. }else {
  116. if (broNode.leftNode.color == BLACK){
  117. broNode.rightNode.setColor(BLACK);
  118. ll_rotate(broNode);
  119. broNode = child.parentNode.leftNode;
  120. }
  121. broNode.setColor(child.parentNode.color);
  122. child.parentNode.setColor(BLACK);
  123. broNode.leftNode.setColor(BLACK);
  124. rr_rotate(child.parentNode);
  125. child = root;
  126. }
  127. }
  128. }
  129. child.setColor(BLACK);
  130. }
  131. private RedBlackNode minNode(RedBlackNode node) {
  132. if (node != null){
  133. RedBlackNode current = node;
  134. while (current != null){
  135. if (current.leftNode != null){
  136. current = current.leftNode;
  137. }else {
  138. return current;
  139. }
  140. }
  141. }
  142. return null;
  143. }
  144. private RedBlackNode findNodeByKey(int key) {
  145. if (root != null){
  146. RedBlackNode current = root;
  147. while (current != null){
  148. if (current.key > key){
  149. current = current.leftNode;
  150. }else if (current.key < key){
  151. current = current.rightNode;
  152. }else {
  153. return current;
  154. }
  155. }
  156. }
  157. return null;
  158. }
  159. private void addNodeToTree(RedBlackNode redBlackNode) {
  160. if (redBlackNode != null && redBlackNode.parentNode.color == RED){
  161. RedBlackNode uncle = null;
  162. RedBlackNode grandparent = redBlackNode.parentNode.parentNode;
  163. if (grandparent != null){
  164. if (redBlackNode.parentNode == grandparent.leftNode){
  165. uncle = redBlackNode.parentNode.parentNode.rightNode;
  166. String color = uncle == null?BLACK:uncle.color;
  167. if (color == RED){
  168. redBlackNode.parentNode.setColor(BLACK);
  169. uncle.setColor(BLACK);
  170. grandparent.setColor(RED);
  171. redBlackNode = grandparent;
  172. }else {
  173. if (redBlackNode == redBlackNode.parentNode.rightNode){
  174. ll_rotate(redBlackNode.parentNode);
  175. }
  176. redBlackNode.parentNode.setColor(BLACK);
  177. grandparent.setColor(RED);
  178. rr_rotate(grandparent);
  179. }
  180. }else {
  181. uncle = redBlackNode.parentNode.parentNode.leftNode;
  182. String color = uncle == null?BLACK:uncle.color;
  183. if (color == RED){
  184. redBlackNode.parentNode.setColor(BLACK);
  185. uncle.setColor(BLACK);
  186. grandparent.setColor(RED);
  187. redBlackNode = grandparent;
  188. }else {
  189. if (redBlackNode == redBlackNode.parentNode.leftNode){
  190. rr_rotate(redBlackNode.parentNode);
  191. }
  192. redBlackNode.parentNode.setColor(BLACK);
  193. grandparent.setColor(RED);
  194. ll_rotate(grandparent);
  195. }
  196. }
  197. }
  198. }
  199. root.setColor(BLACK);
  200. }
  201. private void rr_rotate(RedBlackNode node) {
  202. if (node != null){
  203. RedBlackNode leftNode = node.leftNode;
  204. node.leftNode = leftNode.rightNode;
  205. if (leftNode.rightNode != null){
  206. leftNode.rightNode.parentNode = node;
  207. }
  208. leftNode.parentNode = node.parentNode;
  209. if (node.parentNode == null){
  210. root = leftNode;
  211. }else if (node.parentNode.leftNode == node){
  212. node.parentNode.leftNode = leftNode;
  213. }else {
  214. node.parentNode.rightNode = leftNode;
  215. }
  216. leftNode.rightNode = node;
  217. node.parentNode = leftNode;
  218. }
  219. }
  220. private int compass(Integer le, Integer ri) {
  221. return le - ri;
  222. }
  223. private void ll_rotate(RedBlackNode node) {
  224. if (node != null){
  225. RedBlackNode rightNode = node.rightNode;
  226. node.rightNode = rightNode.leftNode;
  227. if (rightNode.leftNode != null){
  228. rightNode.leftNode.parentNode = node;
  229. }
  230. rightNode.parentNode = node.parentNode;
  231. if (node.parentNode == null){
  232. root = rightNode;
  233. }else if (node.parentNode.leftNode == node){
  234. node.parentNode.leftNode = rightNode;
  235. }else {
  236. node.parentNode.rightNode = rightNode;
  237. }
  238. rightNode.leftNode = node;
  239. node.parentNode = rightNode;
  240. }
  241. }
  242. public static void main(String[] args) {
  243. RedBlackTree redBlackTree = new RedBlackTree();
  244. redBlackTree.insert(18,12);
  245. redBlackTree.insert(8,134);
  246. redBlackTree.insert(3,325);
  247. redBlackTree.insert(9,5464);
  248. redBlackTree.insert(10,1);
  249. redBlackTree.insert(5,32);
  250. redBlackTree.insert(4,122);
  251. redBlackTree.insert(1,25);
  252. redBlackTree.insert(7,65);
  253. redBlackTree.insert(13,123);
  254. redBlackTree.insert(12, 1455);
  255. redBlackTree.insert(21, 342);
  256. redBlackTree.insert(22, 534);
  257. redBlackTree.delete(5);
  258. redBlackTree.delete(7);
  259. System.out.println(redBlackTree.root);
  260. }
  261. }
  1. {\__/} {\__/}
  2. ( ·-·) (·-· )
  3. / >------------------------------------------------< \
  4. | ☆ |
  5. | ☆ |
  6. | ★ |
  7. | ☆ |
  8. | ☆ |
  9. | |
  10. -------------------------------------

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/214767
推荐阅读
相关标签
  

闽ICP备14008679号