91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何進行二叉搜索樹的增刪查改

發布時間:2021-11-25 15:28:55 來源:億速云 閱讀:153 作者:柒染 欄目:編程語言

本篇文章給大家分享的是有關如何進行二叉搜索樹的增刪查改,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

二叉搜索樹的性質:

    1.每個節點都有一個作為搜索依據的關鍵碼(key),所有節點的關鍵碼都不一樣。

    2.左子樹的關鍵碼都小于根節點的關鍵碼

    3.右子樹的關鍵碼都大于根節點的關鍵碼

    4.左右子樹都是二叉搜索樹

#include<iostream>

using namespace std;

template<class K,class V>

struct BSTreeNode

{

BSTreeNode<K, V>* _left;

BSTreeNode<K, V>* _right;

K _key;

V _value;

BSTreeNode(const K& key, const V& value)

: _left(NULL)

, _right(NULL)

, _key(key)

, _value(value)

{}

};

template < class K, class V>

class BSTree

{

typedef BSTreeNode<K, V> Node;

public:

BSTree()

:_root(NULL)

{}

/*bool Insert(const K& key, const V& value)

{

if (_root == NULL)

{

_root = new Node(key, value);

return true;

}

Node* parent = NULL;

Node* cur = _root;

while (cur)

{

if (cur->_key > key)

{

parent = cur;

cur = cur->_left;

}

else if (cur->_key < key)

{

parent = cur;

cur = cur->_right;

}

else

{

return false;

}

}

if (parent->_key > key)

{

parent->_left = new Node(key, value);

}

else

{

parent->_right = new Node(key, value);

}

return true;

}

Node* Find(const K& key)

{

Node* cur = _root;

while (cur)

{

if (cur->_key > key)

{

cur = cur->_left;

}

else if (cur->_key < key)

{

cur = cur->_right;

}

else

{

return cur;

}

}

return NULL;

}

bool Remove(const K& key)

{

if (_root == NULL)

{

return false;

}

Node* parent = NULL;

Node* cur = _root;

while (cur)

{

if (cur->_key < key)

{

parent = cur;

cur = cur->_right;

}

else if (cur->_key > key)

{

parent = cur;

cur = cur->_left;

}

else

{

if (cur->_left == NULL)//左為空

{

if (cur == _root)

{

_root = cur->_right;

}

else

{

if (parent->_left == cur)

{

parent->_left = cur->_right;

}

else

{

parent->_right = cur->_right;

}

}

delete cur;

}

else if (cur->_right == NULL)//右為空

{

if (parent == NULL)

{

_root = cur;

}

else

{

if (parent->_left == cur)

{

parent->_left = cur->_left;

}

else

{

parent->_right = cur->_left;

}

}

delete cur;

}

else//左右都不為空

{

Node* parent = cur;

Node* left = cur->_right;

while (left->_left)

{

parent = left;

left = left->_left;

}

cur->_key = left->_key;

cur->_value = left->_value;

if (parent->_left == left)

{

parent->_left = left->_right;

}

else

{

parent->_right = left->_right;

}

delete left;

}

return true;

}

}

return false;

}*/

void Inorder()

{

Node* root = _root;

_Inorder(root);

cout << endl;

}

void _Inorder(Node* root)

{

if (root == NULL)

{

return;

}

_Inorder(root->_left);

cout << root->_key << " ";

_Inorder(root->_right);

}

bool InsertR(const K& key, const V& value)

{

return _InsertR(_root, key, value);

}

Node* FindR(const K& key)

{

return _FindR(_root, key);

}

bool RemoveR(const K& key)

{

return _RemoveR(_root, key);

}

protected:

bool _InsertR(Node*& root, const K& key, const V& value)

{

if (root == NULL)

{

root = new Node(key, value);

return true;

}

if (root->_key > key)

{

return _InsertR(root->_left, key, value);

}

else if (root->_key < key)

{

return _InsertR(root->_right, key, value);

}

else

{

return false;

}

}

Node* _FindR(Node* root, const K& key)

{

if (root == NULL)

{

return NULL;

}

if (root->_key == key)

{

return root;

}

if (root->_key > key)

{

return _FindR(root->_left, key);

}

else if (root->_key < key)

{

return _FindR(root->_right, key);

}

}

bool _RemoveR(Node*& root, const K& key)

{

if (root == NULL)

{

return false;

}

if (root->_key > key)

{

return _RemoveR(root->_left, key);

}

else if (root->_key < key)

{

return _RemoveR(root->_right, key);

}

else

{

Node* del = root;

if (root->_left == NULL)//左為空

{

root = root->_right;//這里不用考慮被刪結點的父節點,因為遞歸使用的引用,傳過來的參數其實是父親結點的左孩子或者右孩子

}

else if (root->_right == NULL)//右為空

{

root = root->_left;

}

else//左右都不為空

{

Node* parent = root;

Node* left = root->_right;

while (left->_left)

{

parent = left;

left = left->_left;

}

del = left;

root->_key = left->_key;

root->_value = left->_value;

if (parent->_left == left)

{

parent->_left = left->_right;

}

else

{

parent->_right = left->_right;

}

}

delete del;

}

return true;

}

protected:

Node* _root;

};

以上就是如何進行二叉搜索樹的增刪查改,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

锡林郭勒盟| 新宁县| 二手房| 永新县| 蒙自县| 富宁县| 建瓯市| 吴忠市| 井研县| 赣州市| 温泉县| 五大连池市| 苏尼特右旗| 梁河县| 乳源| 青阳县| 思南县| 乐东| 安平县| 广丰县| 浦县| 雅江县| 同德县| 崇礼县| 会昌县| 苏尼特右旗| 中方县| 黎川县| 常山县| 龙江县| 宝坻区| 乌兰县| 乐昌市| 高平市| 增城市| 镇江市| 谢通门县| 汝州市| 汽车| 靖安县| 渝中区|