当前位置:   article > 正文

[ 数据结构 - C++]红黑树RBTree_c++ rb-tree

c++ rb-tree

在上篇文章我们了解了第一种平衡二叉搜索树AVL树,我们知道AVL树是通过平衡因子来控制左右子树高度差,从而将二叉树变成一颗平衡二叉搜索树。本篇文章我们将要了解另外一种平衡规则控制的二叉搜索树--红黑树(RBTree)

目录

1.红黑树的概念

2.红黑树的性质

3.红黑树节点的定义

4.红黑树的插入Insert

代码实现:

5.红黑树的验证

6.红黑树与AVL树的比较

7.红黑树测试

附录:


1.红黑树的概念

红黑树是一种二叉搜索树,在二叉树的每个节点上增加一个存储为表示该节点的颜色。颜色可以红色(RED)或黑色(BLACK)。通过对任意一条从根到叶子的路径上各个节点着色方式的限制,红黑树确保没有一条路径会比其他路径长2倍,因而是接近平衡的。(例如:下图正是一颗红黑树)

2.红黑树的性质

根据上图示例,我们能够发现一颗红黑树具有如下几条性质:

  1. 每个结点不是红色就是黑色。
  2. 根节点是黑色的。
  3. 如果一个节点是红色的,则它的两个孩子节点是黑色的。
  4. 对于每个结点,从该节点到其所有后代叶节点的简单路径上,均包含相同数目的黑色结点。
  5. 每个叶子节点都是黑色的(此处的也是节点指的是空节点)。

满足以上红黑树的性质,就能保证该棵树是一颗平衡树吗?为什么?

我们在概念中提到,红黑树确保没有一条路径会比其他路径长2倍,因而是接近平衡的。因此问题就转变为为什么如果这颗树是一颗红黑树,就能保证其最长路径中节点个数不会超过最短路径节点个数的两倍?

  • 根据第三点,红色节点的孩子是黑色的,这点能保证没有连续的两个红色节点。
  • 根据第四点,从该节点到后代的叶子路径上,包含数量相同的黑色节点,此处假如是从根节点计算,最坏情况下根节点左孩子为空,此时说明了从根节点开始一条路径上只有2个黑色节点(不包含NULL节点),这也要求了根节点的右孩子必须且有2个黑色节点,此时根节点的右孩子可以存在一个红色节点,但是配合第三点,如果存在红色节点且红色节点的孩子一定是黑色的,此时右子树中任意一条路径的黑色节点已经达到两个,说明不能再存在黑色节点了,因此在黑色几点下最后链接一个红色节点右子树就需要停止。(如下图所示为例)

此时我们发现最短的路径长度为2(15->9),最长的路径长度为4(15->19->17->16)【其一】,这也就验证了一颗红黑树中,其最长路径中的节点个数不会超过最短路径中的节点个数的两倍!

3.红黑树节点的定义

我们依然才从KV模型来建立节点。较AVL树而言,红黑树多了一个Colour而少了一个_bf,但是结构大体相同。

  1. enum Colour
  2. {
  3. RED,
  4. BLACK,
  5. };
  6. template<class K,class V>
  7. struct RBTreeNode
  8. {
  9. pair<K, V> _kv;
  10. RBTreeNode* _left;
  11. RBTreeNode* _right;
  12. RBTreeNode* _parent;
  13. Colour _col;//节点的颜色
  14. RBTreeNode(const pair<K, V>& kv)
  15. :_kv(kv)
  16. ,_left(nullptr)
  17. ,_right(nullptr)
  18. ,_parent(nullptr)
  19. ,_col(RED)
  20. {}
  21. };

在上述红黑树节点的定义中,新节点的_col默认给成红色是有意为之还是红黑色都可以呢?

当我们插入一个节点之后,可能会破坏红黑树的规则,因此我们插入一个节点要尽可能的少破坏红黑树的规则。而插入红色节点是,可能会破坏性质3,因为可能会导致连续的红色节点;而插入黑色节点是,会一定破坏性质4,因为插入一个黑色节点必然会使插入节点的这一条路径黑色几点个数增加1,从而导致性质4被破坏,因此从破坏力度来说选择红色节点,插入红色节点可能破坏性质3,插入黑色节点一定破坏性质4。

从维护红黑树的角度来说,也是破坏4更难维护,因为它牵扯到每一条路径,可能会让红黑树产生翻天覆地的变化(具体详情往下看Insert)。

4.红黑树的插入Insert

红黑树是在二叉搜索树的基础上加上其平衡限制条件,因此红黑树的插入可以分为两步:

1.按照儿茶搜索树的规则插入新节点

2.检测新节点插入后,红黑树的性质是否被破坏。

  1. bool Insert(const pair<K, V>& kv)
  2. {
  3. //1.搜索树的规则插入
  4. //2.看是否违反平衡规则,如果违反就需要处理:旋转
  5. if (_root == nullptr)
  6. {
  7. _root = new Node(kv);
  8. _root->_col = BLACK;//性质2:根节点为黑色
  9. return true;
  10. }
  11. Node* parent = nullptr;
  12. Node* cur = _root;
  13. while (cur)
  14. {
  15. if (cur->_kv.first < kv.first)
  16. {
  17. parent = cur;
  18. cur = cur->_right;
  19. }
  20. else if (cur->_kv.first > kv.first)
  21. {
  22. parent = cur;
  23. cur = cur->_left;
  24. }
  25. else
  26. {
  27. return false;
  28. }
  29. }
  30. //找到正确位置了
  31. cur = new Node(kv);
  32. cur->_col = RED;//新增节点都是红色
  33. if (parent->_kv.first < kv.first)
  34. {
  35. parent->_right = cur;
  36. }
  37. else
  38. {
  39. parent->_left = cur;
  40. }
  41. cur->_parent = parent;
  42. //维护处理
  43. //......
  44. }

当走完上述代码后,我们知道此时新节点已经插入到正确的位置了,现在要做的是检查和维护这颗红黑树。

  1. 如果双亲节点的颜色是黑色,那说明没有违反红黑树的任何性质,则不需要调整。
  2. 当新插入节点的双亲节点颜色红色时,此时违反性质三(不能有连续的红色节点),此时需要对红黑树进行调整。调整需分情况来讨论:(约定cur为当前节点,p为父节点,g为祖父节点,u为叔叔节点)
    1. 情况一:cur为红,p为红,g为黑,u存在且为红

注意:此处看到的树,可能是一颗完整的树,也可能是一颗子树。

如果g是根节点,调整完成后,需要将g改为黑色

如果g是子树,g一定有双亲,且g的双亲如果是红色,需要继续向上调整

cur和p均为红,违反了性质3。解决方式:将p,u改为黑,g改为红,然后把g当成cur,继续向上调整。

    1. 情况二:cur为红,p为红,g为黑,u不存在/u存在且为黑

说明:u的情况有两种:

  • 如果u节点不存在,则cur一定是新插入节点,因为如果cur不是新插入节点,则cur和p一定有一个节点的颜色是黑色,就不满足性质4:每条路径黑色节点个数相同
  • 如果u节点存在,则其一定为黑色的,那么cur节点原来的颜色一定是黑色的,现在看到其是红色的原因是因为cur的子树在调整的过程中将cur节点的颜色由黑色改成红色

p为g的左孩子,cur为p的左孩子则进行右单旋;

p为g的右孩子,cur为p的右孩子,则进行左单旋;

p,g变色--p变成黑,g变成红。(旋转规则在AVL树中有详细讲解,大家可参考上篇博文)

    1. 情况三:cur为红,p为红,g为黑,u不存在/u存在且为黑

p为g的左孩子,cur为p的右孩子,则针对p做左单旋;

p为g的右孩子,cur为p的左孩子,则针对p做右单旋;

则转换为了情况二。

代码实现:

  1. bool Insert(const pair<K, V>& kv)
  2. {
  3. //1.搜索树的规则插入
  4. //2.看是否违反平衡规则,如果违反就需要处理:旋转
  5. if (_root == nullptr)
  6. {
  7. _root = new Node(kv);
  8. _root->_col = BLACK;
  9. return true;
  10. }
  11. Node* parent = nullptr;
  12. Node* cur = _root;
  13. while (cur)
  14. {
  15. if (cur->_kv.first < kv.first)
  16. {
  17. parent = cur;
  18. cur = cur->_right;
  19. }
  20. else if (cur->_kv.first > kv.first)
  21. {
  22. parent = cur;
  23. cur = cur->_left;
  24. }
  25. else
  26. {
  27. return false;
  28. }
  29. }
  30. //找到正确位置了
  31. cur = new Node(kv);
  32. cur->_col = RED;//新增节点都是红色
  33. if (parent->_kv.first < kv.first)
  34. {
  35. parent->_right = cur;
  36. }
  37. else
  38. {
  39. parent->_left = cur;
  40. }
  41. cur->_parent = parent;
  42. //存在连续的红色节点
  43. while (parent && parent->_col == RED)
  44. {
  45. Node* grandfather = parent->_parent;
  46. assert(grandfather);
  47. if (grandfather->_left == parent)
  48. {
  49. Node* uncle = grandfather->_right;
  50. //情况1:
  51. if (uncle && uncle->_col == RED)//叔叔存在且为红
  52. {
  53. //变色
  54. parent->_col = uncle->_col = BLACK;
  55. grandfather->_col = RED;
  56. //继续往上调整
  57. cur = grandfather;
  58. parent = cur->_parent;
  59. }
  60. else//叔叔不存在 或者 叔叔存在且为黑
  61. {
  62. if (cur == parent->_left)
  63. {
  64. // g
  65. // p
  66. // c
  67. RotateR(grandfather);
  68. parent->_col = BLACK;
  69. grandfather->_col = RED;
  70. }
  71. else//双旋
  72. {
  73. // g
  74. // p
  75. // c
  76. RotateL(parent);
  77. RotateR(grandfather);
  78. cur->_col = BLACK;
  79. grandfather->_col = RED;
  80. }
  81. break;
  82. }
  83. }
  84. else//grandfather->_right == parent
  85. {
  86. Node* uncle = grandfather->_left;
  87. //情况一:
  88. if (uncle && uncle->_col == RED)
  89. {
  90. //变色
  91. parent->_col = uncle->_col = BLACK;
  92. grandfather->_col = RED;
  93. //继续往上处理
  94. cur = grandfather;
  95. parent = cur->_parent;
  96. }
  97. else
  98. {
  99. if (cur == parent->_right)
  100. {
  101. // g
  102. // p
  103. // c
  104. RotateL(grandfather);
  105. parent->_col = BLACK;
  106. grandfather->_col = RED;
  107. }
  108. else //双旋
  109. {
  110. // g
  111. // p
  112. // c
  113. RotateR(parent);
  114. RotateL(grandfather);
  115. cur->_col = BLACK;
  116. grandfather->_col = RED;
  117. }
  118. break;
  119. }
  120. }
  121. }
  122. //处理根 一定是黑色
  123. _root->_col = BLACK;
  124. return true;
  125. }
  126. //左旋
  127. void RotateL(Node* parent)
  128. {
  129. Node* subR = parent->_right;
  130. Node* subRL = subR->_left;
  131. parent->_right = subRL;
  132. if (subRL)
  133. subRL->_parent = parent;
  134. Node* ppNode = parent->_parent;
  135. subR->_left = parent;
  136. parent->_parent = subR;
  137. if (parent == _root)
  138. {
  139. _root = subR;
  140. _root->_parent = nullptr;
  141. }
  142. else
  143. {
  144. if (parent == ppNode->_left)
  145. {
  146. ppNode->_left = subR;
  147. }
  148. else
  149. {
  150. ppNode->_right = subR;
  151. }
  152. subR->_parent = ppNode;
  153. }
  154. }
  155. //右旋
  156. void RotateR(Node* parent)
  157. {
  158. Node* subL = parent->_left;
  159. Node* subLR = subL->_right;
  160. parent->_left = subLR;
  161. if (subLR)
  162. subLR->_parent = parent;
  163. Node* ppNode = parent->_parent;
  164. subL->_right = parent;
  165. parent->_parent = subL;
  166. if (parent == _root)
  167. {
  168. _root = subL;
  169. _root->_parent = nullptr;
  170. }
  171. else
  172. {
  173. if (ppNode->_left == parent)
  174. {
  175. ppNode->_left = subL;
  176. }
  177. else
  178. {
  179. ppNode->_right = subL;
  180. }
  181. subL->_parent = ppNode;
  182. }
  183. }

5.红黑树的验证

红黑树的验证检测分为两步:

1.检测其是否满足二叉搜索树(中序遍历是否有序)

2.检测其是否满足红黑树的性质

  1. //检测第一步:是否为二叉搜索树
  2. void _InOrder(Node* root)
  3. {
  4. if (root == nullptr)
  5. return;
  6. _InOrder(root->_left);
  7. cout << root->_kv.first << " ";
  8. _InOrder(root->_right);
  9. }
  10. //检测第二步:是否满足性质
  11. bool _IsValidRBTree(Node* pRoot, size_t k, const size_t blackCount)
  12. {
  13. //走到null之后,判断k和black是否相等
  14. if (nullptr == pRoot)
  15. {
  16. if (k != blackCount)
  17. {
  18. cout << "违反性质四,每条路径中黑色节点的个数必须相同" << endl;
  19. return false;
  20. }
  21. return true;
  22. }
  23. //统计黑色节点的个数
  24. if (BLACK == pRoot->_col)
  25. k++;
  26. //监测当前节点与其双亲是否都为红色
  27. if (RED == pRoot->_col && pRoot->_parent && pRoot->_parent->_col == RED)
  28. {
  29. cout << "违反性质三:存在连在一起的红色节点" << endl;
  30. return false;
  31. }
  32. return _IsValidRBTree(pRoot->_left, k, blackCount) &&
  33. _IsValidRBTree(pRoot->_right, k, blackCount);
  34. }

6.红黑树与AVL树的比较

红黑树和AVL树都是高效的平衡二叉树,增删改查的时间复杂度都是O(log2 N),红黑树不追求绝对平衡,其只需要保证最长路径不超过最短路径的2倍,相对而言,降低了插入和旋转的次数,所以在经常进行增删的结构中性能比AVL树更优,而且红黑树的实现比较简单,所以实际运用中红黑树更多。

7.红黑树测试

红黑树测试时,我们需要知道其最长路径和其最短路径。

  1. int _maxHeight(Node* root)
  2. {
  3. if (root == nullptr)
  4. return 0;
  5. int lh = _maxHeight(root->_left);
  6. int rh = _maxHeight(root->_right);
  7. return lh > rh ? lh + 1 : rh + 1;
  8. }
  9. int _minHeight(Node* root)
  10. {
  11. if (root == nullptr)
  12. return 0;
  13. int lh = _minHeight(root->_left);
  14. int rh = _minHeight(root->_right);
  15. return lh < rh ? lh + 1 : rh + 1;
  16. }

我们可以生成随机数和生成有序数来加以验证

  1. void TestRBTree2()
  2. {
  3. const size_t N = 1024*1024;
  4. vector<int> v;
  5. v.reserve(N);
  6. srand(time(0));
  7. for (size_t i = 0; i < N; ++i)
  8. {
  9. //v.push_back(rand());
  10. v.push_back(i);
  11. }
  12. RBTree<int, int> t;
  13. for (auto e : v)
  14. {
  15. t.Insert(make_pair(e, e));
  16. }
  17. //t.levelOrder();
  18. cout << endl;
  19. cout << endl;
  20. cout << "是否平衡?" << t.IsBalanceTree() << endl;
  21. t.Height();
  22. //t.InOrder();
  23. }

首先我们使用有序数来验证,我们将使用N=1024*1024个数据进行测试

接下来我们使用随机数来验证,仍然使用N=1024*1024个数据进行测试

我们发现,我们自构的红黑树均完成了以上测试。

附录:

  1. #pragma once
  2. #include <assert.h>
  3. #include <vector>
  4. #include <queue>
  5. #include <iostream>
  6. #include <time.h>
  7. using namespace std;
  8. enum Colour
  9. {
  10. RED,
  11. BLACK,
  12. };
  13. template<class K,class V>
  14. struct RBTreeNode
  15. {
  16. pair<K, V> _kv;
  17. RBTreeNode* _left;
  18. RBTreeNode* _right;
  19. RBTreeNode* _parent;
  20. Colour _col;
  21. RBTreeNode(const pair<K, V>& kv)
  22. :_kv(kv)
  23. ,_left(nullptr)
  24. ,_right(nullptr)
  25. ,_parent(nullptr)
  26. ,_col(RED)
  27. {}
  28. };
  29. template<class K,class V>
  30. class RBTree
  31. {
  32. typedef RBTreeNode<K,V> Node;
  33. public:
  34. void InOrder()
  35. {
  36. _InOrder(_root);
  37. cout << endl;
  38. }
  39. void Height()
  40. {
  41. cout << "最长路径:" << _maxHeight(_root) << endl;
  42. cout << "最短路径:" << _minHeight(_root) << endl;
  43. }
  44. bool IsBalanceTree()
  45. {
  46. //检查红黑树有几条规则
  47. Node* pRoot = _root;
  48. //空树也是红黑树
  49. if (nullptr == pRoot)
  50. return true;
  51. //检查根节点是否满足情况
  52. if (BLACK != pRoot->_col)
  53. {
  54. cout << "违反红黑树性质二:根节点必须为黑色" << endl;
  55. return false;
  56. }
  57. //获取任意一条路径中黑色节点的个数 --作为基准值进行比较
  58. size_t blackCount = 0;
  59. Node* pCur = pRoot;
  60. while (pCur)
  61. {
  62. if (BLACK == pCur->_col)
  63. blackCount++;
  64. pCur = pCur->_left;
  65. }
  66. //监测是否满足红黑树的性质,k用来记录路径中黑色节点的个数
  67. size_t k = 0;
  68. return _IsValidRBTree(pRoot, k, blackCount);
  69. }
  70. public:
  71. bool Insert(const pair<K, V>& kv)
  72. {
  73. //1.搜索树的规则插入
  74. //2.看是否违反平衡规则,如果违反就需要处理:旋转
  75. if (_root == nullptr)
  76. {
  77. _root = new Node(kv);
  78. _root->_col = BLACK;
  79. return true;
  80. }
  81. Node* parent = nullptr;
  82. Node* cur = _root;
  83. while (cur)
  84. {
  85. if (cur->_kv.first < kv.first)
  86. {
  87. parent = cur;
  88. cur = cur->_right;
  89. }
  90. else if (cur->_kv.first > kv.first)
  91. {
  92. parent = cur;
  93. cur = cur->_left;
  94. }
  95. else
  96. {
  97. return false;
  98. }
  99. }
  100. //找到正确位置了
  101. cur = new Node(kv);
  102. cur->_col = RED;//新增节点都是红色
  103. if (parent->_kv.first < kv.first)
  104. {
  105. parent->_right = cur;
  106. }
  107. else
  108. {
  109. parent->_left = cur;
  110. }
  111. cur->_parent = parent;
  112. //存在连续的红色节点
  113. while (parent && parent->_col == RED)
  114. {
  115. Node* grandfather = parent->_parent;
  116. assert(grandfather);
  117. if (grandfather->_left == parent)
  118. {
  119. Node* uncle = grandfather->_right;
  120. //情况1:
  121. if (uncle && uncle->_col == RED)//叔叔存在且为红
  122. {
  123. //变色
  124. parent->_col = uncle->_col = BLACK;
  125. grandfather->_col = RED;
  126. //继续往上调整
  127. cur = grandfather;
  128. parent = cur->_parent;
  129. }
  130. else//叔叔不存在 或者 叔叔存在且为黑
  131. {
  132. if (cur == parent->_left)
  133. {
  134. // g
  135. // p
  136. // c
  137. RotateR(grandfather);
  138. parent->_col = BLACK;
  139. grandfather->_col = RED;
  140. }
  141. else//双旋
  142. {
  143. // g
  144. // p
  145. // c
  146. RotateL(parent);
  147. RotateR(grandfather);
  148. cur->_col = BLACK;
  149. grandfather->_col = RED;
  150. }
  151. break;
  152. }
  153. }
  154. else//grandfather->_right == parent
  155. {
  156. Node* uncle = grandfather->_left;
  157. //情况一:
  158. if (uncle && uncle->_col == RED)
  159. {
  160. //变色
  161. parent->_col = uncle->_col = BLACK;
  162. grandfather->_col = RED;
  163. //继续往上处理
  164. cur = grandfather;
  165. parent = cur->_parent;
  166. }
  167. else
  168. {
  169. if (cur == parent->_right)
  170. {
  171. // g
  172. // p
  173. // c
  174. RotateL(grandfather);
  175. parent->_col = BLACK;
  176. grandfather->_col = RED;
  177. }
  178. else //双旋
  179. {
  180. // g
  181. // p
  182. // c
  183. RotateR(parent);
  184. RotateL(grandfather);
  185. cur->_col = BLACK;
  186. grandfather->_col = RED;
  187. }
  188. break;
  189. }
  190. }
  191. }
  192. //处理根 一定是黑色
  193. _root->_col = BLACK;
  194. return true;
  195. }
  196. vector<vector<int>> levelOrder() {
  197. vector<vector<int>> vv;
  198. if (_root == nullptr)
  199. return vv;
  200. queue<Node*> q;
  201. int levelSize = 1;
  202. q.push(_root);
  203. while (!q.empty())
  204. {
  205. // levelSize控制一层一层出
  206. vector<int> levelV;
  207. while (levelSize--)
  208. {
  209. Node* front = q.front();
  210. q.pop();
  211. levelV.push_back(front->_kv.first);
  212. if (front->_left)
  213. q.push(front->_left);
  214. if (front->_right)
  215. q.push(front->_right);
  216. }
  217. vv.push_back(levelV);
  218. for (auto e : levelV)
  219. {
  220. cout << e << " ";
  221. }
  222. cout << endl;
  223. // 上一层出完,下一层就都进队列
  224. levelSize = q.size();
  225. }
  226. return vv;
  227. }
  228. void RotateL(Node* parent)
  229. {
  230. Node* subR = parent->_right;
  231. Node* subRL = subR->_left;
  232. parent->_right = subRL;
  233. if (subRL)
  234. subRL->_parent = parent;
  235. Node* ppNode = parent->_parent;
  236. subR->_left = parent;
  237. parent->_parent = subR;
  238. if (parent == _root)
  239. {
  240. _root = subR;
  241. _root->_parent = nullptr;
  242. }
  243. else
  244. {
  245. if (parent == ppNode->_left)
  246. {
  247. ppNode->_left = subR;
  248. }
  249. else
  250. {
  251. ppNode->_right = subR;
  252. }
  253. subR->_parent = ppNode;
  254. }
  255. }
  256. void RotateR(Node* parent)
  257. {
  258. Node* subL = parent->_left;
  259. Node* subLR = subL->_right;
  260. parent->_left = subLR;
  261. if (subLR)
  262. subLR->_parent = parent;
  263. Node* ppNode = parent->_parent;
  264. subL->_right = parent;
  265. parent->_parent = subL;
  266. if (parent == _root)
  267. {
  268. _root = subL;
  269. _root->_parent = nullptr;
  270. }
  271. else
  272. {
  273. if (ppNode->_left == parent)
  274. {
  275. ppNode->_left = subL;
  276. }
  277. else
  278. {
  279. ppNode->_right = subL;
  280. }
  281. subL->_parent = ppNode;
  282. }
  283. }
  284. int _maxHeight(Node* root)
  285. {
  286. if (root == nullptr)
  287. return 0;
  288. int lh = _maxHeight(root->_left);
  289. int rh = _maxHeight(root->_right);
  290. return lh > rh ? lh + 1 : rh + 1;
  291. }
  292. int _minHeight(Node* root)
  293. {
  294. if (root == nullptr)
  295. return 0;
  296. int lh = _minHeight(root->_left);
  297. int rh = _minHeight(root->_right);
  298. return lh < rh ? lh + 1 : rh + 1;
  299. }
  300. void _InOrder(Node* root)
  301. {
  302. if (root == nullptr)
  303. return;
  304. _InOrder(root->_left);
  305. cout << root->_kv.first << " ";
  306. _InOrder(root->_right);
  307. }
  308. bool _IsValidRBTree(Node* pRoot, size_t k, const size_t blackCount)
  309. {
  310. //走到null之后,判断k和black是否相等
  311. if (nullptr == pRoot)
  312. {
  313. if (k != blackCount)
  314. {
  315. cout << "违反性质四,每条路径中黑色节点的个数必须相同" << endl;
  316. return false;
  317. }
  318. return true;
  319. }
  320. //统计黑色节点的个数
  321. if (BLACK == pRoot->_col)
  322. k++;
  323. //监测当前节点与其双亲是否都为红色
  324. if (RED == pRoot->_col && pRoot->_parent && pRoot->_parent->_col == RED)
  325. {
  326. cout << "违反性质三:存在连在一起的红色节点" << endl;
  327. return false;
  328. }
  329. return _IsValidRBTree(pRoot->_left, k, blackCount) &&
  330. _IsValidRBTree(pRoot->_right, k, blackCount);
  331. }
  332. private:
  333. Node* _root = nullptr;
  334. };
  335. void TestRBTree1()
  336. {
  337. //int a[] = { 1, 2, 3, 4, 5, 6, 7, 8 };
  338. int a[] = { 30, 29, 28, 27, 26, 25, 24, 11, 8, 7, 6, 5, 4, 3, 2, 1 };
  339. RBTree<int, int> t;
  340. for (auto e : a)
  341. {
  342. t.Insert(make_pair(e, e));
  343. }
  344. t.levelOrder();
  345. t.InOrder();
  346. t.Height();
  347. }
  348. void TestRBTree2()
  349. {
  350. const size_t N = 1024*1024;
  351. vector<int> v;
  352. v.reserve(N);
  353. srand(time(0));
  354. for (size_t i = 0; i < N; ++i)
  355. {
  356. v.push_back(rand());
  357. //v.push_back(i);
  358. }
  359. RBTree<int, int> t;
  360. for (auto e : v)
  361. {
  362. t.Insert(make_pair(e, e));
  363. }
  364. //t.levelOrder();
  365. cout << endl;
  366. cout << endl;
  367. cout << "是否平衡?" << t.IsBalanceTree() << endl;
  368. t.Height();
  369. //t.InOrder();
  370. }

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