当前位置:   article > 正文

【C++进阶学习】第五弹——二叉搜索树——二叉树进阶及set和map的铺垫

【C++进阶学习】第五弹——二叉搜索树——二叉树进阶及set和map的铺垫

二叉树1:深入理解数据结构第一弹——二叉树(1)——堆-CSDN博客

二叉树2:深入理解数据结构第三弹——二叉树(3)——二叉树的基本结构与操作-CSDN博客

二叉树3:深入理解数据结构第三弹——二叉树(3)——二叉树的基本结构与操作-CSDN博客

前言:


在之前我们用C语言实现数据结构时,已经对二叉树进行了系统的学习,但还是有一些内容并没有涉及到,比如今天要讲的二叉搜索树,因为二叉搜索树在C++中有现成的模板库——set和map,并且实现起来较为麻烦,所以我们放到这里来讲,对前面二叉树部分有所遗忘的同学可以在我的主页搜一下之前的文章看一下

目录

一、二叉搜索树的概念

二、二叉搜索树的基本操作

1. 插入节点

2. 查找节点

3. 删除节点

三、二叉搜索树的实现

四、二叉搜索树的应用

五、总结


一、二叉搜索树的概念

二叉搜索树又称二叉排序树,它是一种具有特殊性质的二叉树,它具有以下特点:

1. 有序性:对于树中的每个节点,其左子树中的所有节点的值都小于该节点的值,而其右子树中的所有节点的值都大于该节点的值。

2. 唯一性:树中的每个节点的值都是唯一的,不存在重复的值。

3. 递归性:它的子树也都是二叉树

上面这三种性质,最不好理解的应该是有序性,下面我们通过两个例子来展现这三种性质:

二、二叉搜索树的基本操作

1. 插入节点

插入节点的过程如下:

  • 从根节点开始,比较要插入的值与当前节点的值。
  • 如果要插入的值小于当前节点的值,则移动到左子节点;如果要插入的值大于当前节点的值,则移动到右子节点。
  • 重复上述过程,直到找到一个空位置,然后在该位置插入新节点。
2. 查找节点

查找节点的过程如下:

  • 从根节点开始,比较要查找的值与当前节点的值。
  • 如果要查找的值等于当前节点的值,则返回该节点。
  • 如果要查找的值小于当前节点的值,则移动到左子节点;如果要查找的值大于当前节点的值,则移动到右子节点。
  • 重复上述过程,直到找到目标节点或遍历到空节点。
3. 删除节点

删除节点的过程相对复杂,需要考虑以下几种情况:

  • 删除叶子节点:直接删除该节点。
  • 删除只有一个子节点的节点:将其子节点替换到该节点的位置。
  • 删除有两个子节点的节点:找到该节点右子树中的最小节点(或左子树中的最大节点),将其值替换到该节点的位置,然后删除该最小节点。

三、二叉搜索树的实现

  1. template<class T>
  2. struct BSTNode
  3. {
  4. BSTNode(const T& data = T())
  5.   : _pLeft(nullptr) , _pRight(nullptr), _data(data)
  6. {}
  7. BSTNode<T>* _pLeft;
  8. BSTNode<T>* _pRight;
  9. T _data;
  10. };
  11. template<class T>
  12. class BSTree
  13. {
  14. typedef BSTNode<T> Node;
  15. typedef Node* PNode;
  16. public:
  17. BSTree(): _pRoot(nullptr)
  18. {}
  19. // 自己实现,与二叉树的销毁类似
  20. ~BSTree();
  21. // 根据二叉搜索树的性质查找:找到值为data的节点在二叉搜索树中的位置
  22. PNode Find(const T& data);
  23. bool Insert(const T& data)
  24. {
  25. // 如果树为空,直接插入
  26. if (nullptr == _pRoot)
  27. {
  28. _pRoot = new Node(data);
  29. return true;
  30. }
  31. // 按照二叉搜索树的性质查找data在树中的插入位置
  32. PNode pCur = _pRoot;
  33. // 记录pCur的双亲,因为新元素最终插入在pCur双亲左右孩子的位置
  34. PNode pParent = nullptr;
  35. while (pCur)
  36. {
  37. pParent = pCur;
  38. if (data < pCur->_data)
  39. 比特就业课
  40. pCur = pCur->_pLeft;
  41. else if (data > pCur->_data)
  42. pCur = pCur->_pRight;  // 元素已经在树中存在
  43. else
  44. return false;
  45. }
  46. // 插入元素
  47. pCur = new Node(data);
  48. if (data < pParent->_data)
  49. pParent->_pLeft = pCur;
  50. else
  51. pParent->_pRight = pCur;
  52. return true;
  53. }
  54. bool Erase(const T& data)
  55. {
  56. // 如果树为空,删除失败
  57. if (nullptr == _pRoot)
  58. return false;
  59. // 查找在data在树中的位置
  60. PNode pCur = _pRoot;
  61. PNode pParent = nullptr;
  62. while (pCur)
  63. {
  64. if (data == pCur->_data)
  65. break;
  66. else if (data < pCur->_data)
  67. {
  68. pParent = pCur;
  69. pCur = pCur->_pLeft;
  70. }
  71. else
  72. {
  73. pParent = pCur;
  74. pCur = pCur->_pRight;
  75. }
  76. }
  77. // data不在二叉搜索树中,无法删除
  78. if (nullptr == pCur)
  79. return false;
  80. // 分以下情况进行删除,同学们自己画图分析完成
  81. if (nullptr == pCur->_pRight)
  82. {
  83. // 当前节点只有左孩子或者左孩子为空---可直接删除
  84. }
  85. else if (nullptr == pCur->_pRight)
  86. {
  87. // 当前节点只有右孩子---可直接删除
  88. }
  89. else
  90. {
  91. // 当前节点左右孩子都存在,直接删除不好删除,可以在其子树中找一个替代结点,
  92. 比如:
  93. // 找其左子树中的最大节点,即左子树中最右侧的节点,或者在其右子树中最小的节
  94. 点,即右子树中最小的节点
  95. // 替代节点找到后,将替代节点中的值交给待删除节点,转换成删除替代节点
  96. }
  97. return true;
  98. }
  99. // 自己实现
  100. void InOrder();
  101. private:
  102. PNode _pRoot;
  103. };

四、二叉搜索树的应用

在我们目前的学习中,二叉搜索树最重要的用途就是key--val模型,KV模型就是每一个key值都对应一个val值,这样就形成一个<key,val>键值对,这样的应用在生活中是非常常见的

比如:在菜市场中不同的蔬菜对应着不同的价格;新华词典中,不同的汉字对应着不同的拼音,这些都可以用KV模型来解决

下面是KV模型的实现(没有主函数):

  1. namespace kv
  2. {
  3. template<class K,class V>
  4. struct BSTreeNode
  5. {
  6. BSTreeNode<K,V>* _left;
  7. BSTreeNode<K,V>* _right;
  8. K _key;
  9. V _value;
  10. BSTreeNode(const K& key,const V& value)
  11. :_left(nullptr)
  12. , _right(nullptr)
  13. , _key(key)
  14. , _value(value)
  15. {}
  16. };
  17. template<class K,class V>
  18. class BSTree
  19. {
  20. typedef BSTreeNode<K,V> Node;
  21. public:
  22. //遍历(中序)
  23. void _InOrder(Node* root)
  24. {
  25. if (root == nullptr)
  26. return;
  27. _InOrder(root->_left);
  28. cout << root->_key << ":" << root->_value << endl;
  29. _InOrder(root->_right);
  30. }
  31. void InOrder()
  32. {
  33. _InOrder(_root);
  34. cout << endl;
  35. }
  36. ///
  37. bool Insert(const K& key,const V& value)
  38. {
  39. if (_root == nullptr)
  40. {
  41. _root = new Node(key,value);
  42. return true;
  43. }
  44. Node* parent = nullptr;
  45. Node* cur = _root;
  46. while (cur)
  47. {
  48. parent = cur;
  49. if (cur->_key < key)
  50. {
  51. cur = cur->_right;
  52. }
  53. else if (cur->_key > key)
  54. {
  55. cur = cur->_left;
  56. }
  57. else
  58. {
  59. return false;
  60. }
  61. }
  62. cur = new Node(key,value);
  63. if (parent->_key < key)
  64. {
  65. parent->_right = cur;
  66. }
  67. else
  68. {
  69. parent->_left = cur;
  70. }
  71. return true;
  72. }
  73. Node* Find(const K& key)
  74. {
  75. Node* cur = _root;
  76. while (cur)
  77. {
  78. if (cur->_key < key)
  79. {
  80. cur = cur->_right;
  81. }
  82. else if (cur->_key > key)
  83. {
  84. cur = cur->_left;
  85. }
  86. else
  87. {
  88. return cur;
  89. }
  90. }
  91. return nullptr;
  92. }
  93. bool Erase(const K& key)
  94. {
  95. Node* parent = nullptr;
  96. Node* cur = _root;
  97. while (cur)
  98. {
  99. if (cur->_key < key)
  100. {
  101. parent = cur;
  102. cur = cur->_right;
  103. }
  104. else if (cur->_key > key)
  105. {
  106. parent = cur;
  107. cur = cur->_left;
  108. }
  109. else
  110. {
  111. // 准备删除 20:15继续
  112. if (cur->_left == nullptr)
  113. {//左为空
  114. if (cur == _root)
  115. {
  116. _root = cur->_right;
  117. }
  118. else
  119. {
  120. if (cur == parent->_left)
  121. {
  122. parent->_left = cur->_right;
  123. }
  124. else
  125. {
  126. parent->_right = cur->_right;
  127. }
  128. }
  129. delete cur;
  130. }
  131. else if (cur->_right == nullptr)
  132. {//右为空
  133. if (cur == _root)
  134. {
  135. _root = cur->_left;
  136. }
  137. else
  138. {
  139. if (cur == parent->_left)
  140. {
  141. parent->_left = cur->_left;
  142. }
  143. else
  144. {
  145. parent->_right = cur->_left;
  146. }
  147. }
  148. delete cur;
  149. }
  150. else
  151. {//左右都不为空
  152. // 右树的最小节点(最左节点)
  153. Node* parent = cur;
  154. Node* subLeft = cur->_right;
  155. while (subLeft->_left)
  156. {
  157. parent = subLeft;
  158. subLeft = subLeft->_left;
  159. }
  160. swap(cur->_key, subLeft->_key);
  161. if (subLeft == parent->_left)
  162. parent->_left = subLeft->_right;
  163. else
  164. parent->_right = subLeft->_right;
  165. delete subLeft;
  166. }
  167. return true;
  168. }
  169. }
  170. return false;
  171. }
  172. BSTree() = default;
  173. ~BSTree()
  174. {
  175. Destroy(_root);
  176. }
  177. //递归版本
  178. bool InsertR(const K& key)
  179. {
  180. return _InsertR(_root, key);
  181. }
  182. bool FindR(const K& key)
  183. {
  184. return _FindR(_root, key);
  185. }
  186. bool EraseR(const K& key)
  187. {
  188. return _EraseR(_root, key);
  189. }
  190. BSTree(const BSTree<K,V>& t)
  191. {
  192. _root = Copy(t._root);
  193. }
  194. BSTree<K,V>& operator=(BSTree<K,V> t)
  195. {
  196. swap(_root, t._root);
  197. return *this;
  198. }
  199. private:
  200. Node* Copy(Node* root)
  201. {
  202. if (root == nullptr)
  203. return nullptr;
  204. Node* newroot = new Node(root->_key);
  205. newroot->_left = Copy(root->_left);
  206. newroot->_right = Copy(root->_right);
  207. return newroot;
  208. }
  209. void Destroy(Node*& root)
  210. {
  211. if (root == nullptr)
  212. return;
  213. Destroy(root->_left);
  214. Destroy(root->_right);
  215. delete root;
  216. root = nullptr;
  217. }
  218. bool _EraseR(Node*& root, const K& key)
  219. {
  220. if (root == nullptr)
  221. {
  222. return false;
  223. }
  224. if (root->_key < key)
  225. {
  226. return _EraseR(root->_right, key);
  227. }
  228. else if (root->_key > key)
  229. {
  230. return _EraseR(root->_left, key);
  231. }
  232. else
  233. {
  234. if (root->_left == nullptr)
  235. {
  236. root = root->_right;
  237. return true;
  238. }
  239. else if (root->_right == nullptr)
  240. {
  241. root = root->_left;
  242. return true;
  243. }
  244. else
  245. {
  246. Node* subLeft = root->_right;
  247. while (subLeft->_left)
  248. {
  249. subLeft = subLeft->_left;
  250. }
  251. swap(root->_key, subLeft->_key);
  252. return _EraseR(root->_right, key);
  253. }
  254. }
  255. }
  256. bool _FindR(Node* root, const K& key)
  257. {
  258. if (root == nullptr)
  259. {
  260. return false;
  261. }
  262. if (root->_key < key)
  263. {
  264. return root->_right;
  265. }
  266. else if (root->_key > key)
  267. {
  268. return root->_left;
  269. }
  270. else
  271. {
  272. return true;
  273. }
  274. }
  275. bool _InsertR(Node*& root, const K& key)
  276. {
  277. if (root == nullptr)
  278. {
  279. root = new Node(key);
  280. return true;
  281. }
  282. if (root->_key < key)
  283. {
  284. return _InsertR(root->_right, key);
  285. }
  286. else if (root->_key > key)
  287. {
  288. return _InsertR(root->_left, key);
  289. }
  290. else
  291. {
  292. return false;
  293. }
  294. }
  295. Node* _root = nullptr;
  296. };
  297. }

五、总结

以上就是二叉搜索树的主要内容,在代码实现上其实与之前讲的二叉树差别并不是很大,关键在于思路的梳理,这章就先到这了

感谢各位大佬观看,创作不易,还请各位大佬点赞支持!!!

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

闽ICP备14008679号