当前位置:   article > 正文

C++/数据结构:二叉搜索树的实现与应用

C++/数据结构:二叉搜索树的实现与应用

目录

一、二叉搜索树简介

二、二叉搜索树的结构与实现

2.1二叉树的查找与插入

2.2二叉树的删除

2.3二叉搜索树的实现

2.3.1非递归实现

 2.3.2递归实现

三、二叉搜索树的k模型和kv模型


一、二叉搜索树简介

二叉搜索树又称二叉排序树,它或者是一棵空树,或者是具有以下性质的二叉树:。
若它的左子树不为空,则左子树上所有节点的值都小于根节点的值。
若它的右子树不为空,则右子树上所有节点的值都大于根节点的值。
它的左右子树也分别为二叉搜索树。

二、二叉搜索树的结构与实现

2.1二叉树的查找与插入

int a [] = { 8 , 3 , 1 , 10 , 6 , 4 , 7 , 14 , 13 };
1. 二叉搜索树的查找
a、从根开始比较,查找,比根大则往右边走查找,比根小则往左边走查找。
b、最多查找高度次,走到到空,还没找到,这个值不存在。
2. 二叉搜索树的插入
插入的具体过程如下:
a. 树为空,则直接新增节点,赋值给root指针
b. 树不空,按二叉搜索树性质查找插入位置,插入新节点

2.2二叉树的删除

首先查找元素是否在二叉搜索树中,如果不存在,则返回, 否则要删除的结点可能分下面四种情
况:
a. 要删除的结点无孩子结点
b. 要删除的结点只有左孩子结点
c. 要删除的结点只有右孩子结点
d. 要删除的结点有左、右孩子结点
看起来有待删除节点有4中情况,实际情况a可以与情况b或者c合并起来,因此真正的删除过程
如下:
情况b:删除该结点且使被删除节点的双亲结点指向被删除节点的左孩子结点--直接删除
情况c:删除该结点且使被删除节点的双亲结点指向被删除结点的右孩子结点--直接删除
情况d:在它的右子树中寻找中序下的第一个结点(关键码最小),用它的值填补到被删除节点
中,再来处理该结点的删除问题--替换法删除。

2.3二叉搜索树的实现

2.3.1非递归实现

  1. //二叉树节点的构建
  2. template<class K>
  3. struct BSTreeNode
  4. {
  5. typedef BSTreeNode<K> Node;
  6. Node* _left;
  7. Node* _right;
  8. K _key;
  9. BSTreeNode(const K& key)
  10. :_left(nullptr)
  11. , _right(nullptr)
  12. , _key(key)
  13. {}
  14. };
  15. //class BinarySearchTree
  16. template<class K>
  17. class BSTree
  18. {
  19. typedef BSTreeNode<K> Node;
  20. public:
  21. // 强制生成默认构造
  22. BSTree() = default;
  23. //拷贝构造
  24. BSTree(const BSTree<K>& t)
  25. {
  26. _root = Copy(t._root);
  27. }
  28. //赋值拷贝
  29. BSTree<K>& operator=(BSTree<K> t)
  30. {
  31. swap(_root, t._root);
  32. return *this;
  33. }
  34. //析构函数
  35. ~BSTree()
  36. {
  37. Destroy(_root);
  38. }
  39. ///
  40. //增删查改
  41. //插入数据
  42. bool Insert(const K& key)
  43. {
  44. if (_root == nullptr)
  45. {
  46. _root = new Node(key);
  47. return true;
  48. }
  49. Node* parent = nullptr;
  50. Node* cur = _root;
  51. while (cur)
  52. {
  53. if (cur->_key < key)
  54. {
  55. parent = cur;
  56. cur = cur->_right;
  57. }
  58. else if (cur->_key > key)
  59. {
  60. parent = cur;
  61. cur = cur->_left;
  62. }
  63. else
  64. {
  65. return false;
  66. }
  67. }
  68. cur = new Node(key);
  69. if (parent->_key < key)
  70. {
  71. parent->_right = cur;
  72. }
  73. else
  74. {
  75. parent->_left = cur;
  76. }
  77. return true;
  78. }
  79. //查找数据
  80. bool Find(const K& key)
  81. {
  82. Node* cur = _root;
  83. while (cur)
  84. {
  85. if (cur->_key < key)
  86. {
  87. cur = cur->_right;
  88. }
  89. else if (cur->_key > key)
  90. {
  91. cur = cur->_left;
  92. }
  93. else
  94. {
  95. return true;
  96. }
  97. }
  98. return false;
  99. }
  100. //删除数据
  101. bool Erase(const K& key)
  102. {
  103. Node* parent = nullptr;
  104. Node* cur = _root;
  105. while (cur)
  106. {
  107. if (cur->_key < key)
  108. {
  109. parent = cur;
  110. cur = cur->_right;
  111. }
  112. else if (cur->_key > key)
  113. {
  114. parent = cur;
  115. cur = cur->_left;
  116. }
  117. else
  118. {
  119. if (cur->_left == nullptr)
  120. {
  121. if (cur == _root)
  122. {
  123. _root = cur->_right;
  124. }
  125. else
  126. {
  127. if (cur == parent->_right)
  128. {
  129. parent->_right = cur->_right;
  130. }
  131. else
  132. {
  133. parent->_left = cur->_right;
  134. }
  135. }
  136. delete cur;
  137. return true;
  138. }
  139. else if (cur->_right == nullptr)
  140. {
  141. if (cur == _root)
  142. {
  143. _root = cur->_left;
  144. }
  145. else
  146. {
  147. if (cur == parent->_right)
  148. {
  149. parent->_right = cur->_left;
  150. }
  151. else
  152. {
  153. parent->_left = cur->_left;
  154. }
  155. }
  156. delete cur;
  157. return true;
  158. }
  159. else
  160. {
  161. // 替换法
  162. Node* rightMinParent = cur;
  163. Node* rightMin = cur->_right;
  164. while (rightMin->_left)
  165. {
  166. rightMinParent = rightMin;
  167. rightMin = rightMin->_left;
  168. }
  169. cur->_key = rightMin->_key;
  170. if (rightMin == rightMinParent->_left)
  171. rightMinParent->_left = rightMin->_right;
  172. else
  173. rightMinParent->_right = rightMin->_right;
  174. delete rightMin;
  175. return true;
  176. }
  177. }
  178. }
  179. return false;
  180. }
  181. private
  182. Node* _root;
  183. };

 2.3.2递归实现

  1. //二叉树节点的构建
  2. template<class K>
  3. struct BSTreeNode
  4. {
  5. typedef BSTreeNode<K> Node;
  6. Node* _left;
  7. Node* _right;
  8. K _key;
  9. BSTreeNode(const K& key)
  10. :_left(nullptr)
  11. , _right(nullptr)
  12. , _key(key)
  13. {}
  14. };
  15. //class BinarySearchTree
  16. template<class K>
  17. class BSTree
  18. {
  19. typedef BSTreeNode<K> Node;
  20. public:
  21. // 强制生成默认构造
  22. BSTree() = default;
  23. //拷贝构造
  24. BSTree(const BSTree<K>& t)
  25. {
  26. _root = Copy(t._root);
  27. }
  28. //赋值拷贝
  29. BSTree<K>& operator=(BSTree<K> t)
  30. {
  31. swap(_root, t._root);
  32. return *this;
  33. }
  34. //析构函数
  35. ~BSTree()
  36. {
  37. Destroy(_root);
  38. }
  39. ///
  40. //增删查改
  41. bool FindR(const K& key)
  42. {
  43. return _FindR(_root, key);
  44. }
  45. bool InsertR(const K& key)
  46. {
  47. return _InsertR(_root, key);
  48. }
  49. bool EraseR(const K& key)
  50. {
  51. return _EraseR(_root, key);
  52. }
  53. void InOrder()
  54. {
  55. _InOrder(_root);
  56. cout << endl;
  57. }
  58. private
  59. void Destroy(Node* root)
  60. {
  61. if (root == nullptr)
  62. return;
  63. Destroy(root->_left);
  64. Destroy(root->_right);
  65. delete root;
  66. }
  67. Node* Copy(Node* root)
  68. {
  69. if (root == nullptr)
  70. return nullptr;
  71. Node* newRoot = new Node(root->_key);
  72. newRoot->_left = Copy(root->_left);
  73. newRoot->_right = Copy(root->_right);
  74. return newRoot;
  75. }
  76. //借助引用可以更好的删除和更改数据节点,不需要再额外创建父节点来更改
  77. bool _EraseR(Node*& root, const K& key)
  78. {
  79. if (root == nullptr)
  80. return false;
  81. if (root->_key < key)
  82. {
  83. return _EraseR(root->_right, key);
  84. }
  85. else if (root->_key > key)
  86. {
  87. return _EraseR(root->_left, key);
  88. }
  89. else
  90. {
  91. Node* del = root;
  92. if (root->_right == nullptr)
  93. {
  94. root = root->_left;
  95. }
  96. else if (root->_left == nullptr)
  97. {
  98. root = root->_right;
  99. }
  100. else
  101. {
  102. Node* rightMin = root->_right;
  103. while (rightMin->_left)
  104. {
  105. rightMin = rightMin->_left;
  106. }
  107. swap(root->_key, rightMin->_key);
  108. return _EraseR(root->_right, key);
  109. }
  110. delete del;
  111. return true;
  112. }
  113. }
  114. bool _InsertR(Node*& root, const K& key)
  115. {
  116. if (root == nullptr)
  117. {
  118. root = new Node(key);
  119. return true;
  120. }
  121. if (root->_key < key)
  122. {
  123. return _InsertR(root->_right, key);
  124. }
  125. else if (root->_key > key)
  126. {
  127. return _InsertR(root->_left, key);
  128. }
  129. else
  130. {
  131. return false;
  132. }
  133. }
  134. bool _FindR(Node* root, const K& key)
  135. {
  136. if (root == nullptr)
  137. return false;
  138. if (root->_key < key)
  139. {
  140. return _FindR(root->_right, key);
  141. }
  142. else if (root->_key > key)
  143. {
  144. return _FindR(root->_left, key);
  145. }
  146. else
  147. {
  148. return true;
  149. }
  150. }
  151. void _InOrder(Node* root)
  152. {
  153. if (root == nullptr)
  154. return;
  155. _InOrder(root->_left);
  156. cout << root->_key << " ";
  157. _InOrder(root->_right);
  158. }
  159. Node* _root;
  160. };

三、二叉搜索树的k模型和kv模型

1. K模型:K模型即只有key作为关键码,结构中只需要存储Key即可,关键码即为需要搜索到
的值
比如:给一个单词word,判断该单词是否拼写正确,具体方式如下:
以词库中所有单词集合中的每个单词作为key,构建一棵二叉搜索树
在二叉搜索树中检索该单词是否存在,存在则拼写正确,不存在则拼写错误。
例如:小区停车场,只要可以搜索到车牌号就可以自由进出。
2. KV模型:每一个关键码key,都有与之对应的值Value,即<Key, Value>的键值对。该种方
式在现实生活中非常常见:
比如英汉词典就是英文与中文的对应关系,通过英文可以快速找到与其对应的中文,英
文单词与其对应的中文<word, chinese>就构成一种键值对;
再比如统计单词次数,统计成功后,给定单词就可快速找到其出现的次数,单词与其出
现次数就是<word, count>就构成一种键值对
例如:商场停车场,进去时记录车牌号,出来时查询是否缴费,如果缴费才可以出去。
改造搜素二叉树为kv结构:
  1. // 改造二叉搜索树为KV结构
  2. template<class K, class V>
  3. struct BSTNode
  4. {
  5. BSTNode(const K& key = K(), const V& value = V())
  6.   : _pLeft(nullptr) , _pRight(nullptr), _key(key), _Value(value)
  7. {}
  8. BSTNode<T>* _pLeft;
  9. BSTNode<T>* _pRight;
  10. K _key;
  11.    V _value
  12. };
  13. template<class K, class V>
  14. class BSTree
  15. {
  16. typedef BSTNode<K, V> Node;
  17. typedef Node* PNode;
  18. public:
  19. BSTree(): _pRoot(nullptr){}
  20. PNode Find(const K& key);
  21. bool Insert(const K& key, const V& value)
  22. bool Erase(const K& key)
  23. private:
  24. PNode _pRoot;
  25. };
  26. void TestBSTree()
  27. {
  28. // 输入单词,查找单词对应的中文翻译
  29. BSTree<string, string> dict;
  30. dict.Insert("string", "字符串");
  31. dict.Insert("tree", "树");
  32. dict.Insert("left", "左边、剩余");
  33. dict.Insert("right", "右边");
  34. dict.Insert("sort", "排序");
  35. // 插入词库中所有单词
  36. string str;
  37. while (cin>>str)
  38. {
  39. BSTreeNode<string, string>* ret = dict.Find(str);
  40. if (ret == nullptr)
  41. {
  42. cout << "单词拼写错误,词库中没有这个单词:" <<str <<endl;
  43. }
  44. else
  45. {
  46. cout << str << "中文翻译:" << ret->_value << endl;
  47. }
  48. }
  49. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/102641
推荐阅读
相关标签
  

闽ICP备14008679号