public class BinarSearchTree
{
private Node _tree;
public BinarSearchTree(List<int> datas)
{
if (datas != null)
{
foreach (var item in datas)
{
Insert(item);
}
}
}
/// <summary>
/// 插入
/// </summary>
/// <param name="data"></param>
public void Insert(int data)
{
if (_tree == null)
{
_tree = new Node(data);
}
else
{
var current = _tree;
while (current != null)
{
if (data > current.Data)
{
if (current.Right == null)
{
current.Right = new Node(data, current);
break;
}
current = current.Right;
}
else if (data < current.Data)
{
if (current.Left == null)
{
current.Left = new Node(data, current);
break;
}
current = current.Left;
}
}
}
}
/// <summary>
/// 刪除
/// </summary>
/// <param name="data"></param>
public void Delete(int data)
{
var node = Find(data);
if (node == null) return;
if (node.Left == null && node.Right == null)
{
if (node.Parent == null)
{
_tree = null;
}
else
{
// 直接刪除即可
DeleteFromParent(node);
}
}
else if (node.Left != null && node.Right != null)
{
if (node.Parent == null)
{
_tree = null;
}
else
{
// 查詢右子樹最大節點
var minNode = node.Right;
var currentNode = node.Right;
while (currentNode != null)
{
minNode = currentNode;
currentNode = minNode.Left;
}
DeleteFromParent(minNode);
ReplaceChildNode(node, minNode);
}
}
else
{
// 有一個子節點,則直接將子節點掛到父節點下
var child = node.Left ?? node.Right;
if (node.Parent == null)
{
_tree = child;
}
else
{
ReplaceChildNode(node, child);
}
}
}
private void ReplaceChildNode(Node node, Node newNode)
{
newNode.Parent = node.Parent;
if (node.Parent.Left == node)
{
node.Parent.Left = newNode;
}
if (node.Parent.Right == node)
{
node.Parent.Right = newNode;
}
}
private void DeleteFromParent(Node node)
{
if (node.Parent.Left == node)
{
node.Parent.Left = null;
}
if (node.Parent.Right == node)
{
node.Parent.Right = null;
}
}
/// <summary>
/// 查詢
/// </summary>
/// <param name="data"></param>
/// <returns></returns>
public Node Find(int data)
{
var current = _tree;
while (current != null)
{
if (data > current.Data)
{
current = current.Right;
}
else if (data < current.Data)
{
current = current.Left;
}
else
{
return current;
}
}
return null;
}
}
public class Node
{
public Node(int data, Node parent = null)
{
this.Data = data;
Parent = parent;
}
public int Data { get; set; }
public Node Left { get; set; }
public Node Right { get; set; }
public Node Parent { get; set; }
}
二叉搜尋樹
相關文章
- Day20 | 654.最大二叉樹 、 617.合併二叉樹 、 700.二叉搜尋樹中的搜尋 98.驗證二叉搜尋樹二叉樹
- javascript實現二叉搜尋樹JavaScript
- 二叉搜尋樹的操作集
- 有序表和搜尋二叉樹二叉樹
- 二叉搜尋樹的結構
- js實現完全排序二叉樹、二叉搜尋樹JS排序二叉樹
- 二叉搜尋樹和二叉樹的最近公共祖先二叉樹
- 資料結構中的樹(二叉樹、二叉搜尋樹、AVL樹)資料結構二叉樹
- JavaScript 二叉搜尋樹以及實現翻轉二叉樹JavaScript二叉樹
- 演算法篇 - 二叉搜尋樹演算法
- 資料結構-二叉搜尋樹資料結構
- 【資料結構】二叉搜尋樹!!!資料結構
- 二叉搜尋樹程式碼例項
- 96. 不同的二叉搜尋樹
- 程式碼隨想錄day18 || 530 二叉搜尋樹最小差,501 二叉搜尋樹眾數,236 二叉搜尋樹最近公共祖先
- 滿二叉樹、完全二叉樹、平衡二叉樹、二叉搜尋樹(二叉查詢樹)和最優二叉樹二叉樹
- Leetcode 700. 二叉搜尋樹中的搜尋(DAY 2)LeetCode
- 資料結構之「二叉搜尋樹」資料結構
- 二叉搜尋樹的python實現Python
- 一文搞定二叉排序(搜尋)樹排序
- 資料結構☞二叉搜尋樹BST資料結構
- python 二叉樹深度優先搜尋和廣度優先搜尋Python二叉樹
- leetcode 700. 二叉搜尋樹中的搜尋 思考分析LeetCode
- 程式碼隨想錄 第20天 20的總結沒看 | 654.最大二叉樹 ● 617.合併二叉樹 ● 700.二叉搜尋樹中的搜尋 ● 98.驗證二叉搜尋樹二叉樹
- 程式碼隨想錄演算法訓練營第第20天 | 654.最大二叉樹 、617.合併二叉樹 、700.二叉搜尋樹中的搜尋、98.驗證二叉搜尋樹演算法二叉樹
- 6-12 二叉搜尋樹的操作集
- 如何在 Java 中實現二叉搜尋樹Java
- [Python手撕]判斷二叉搜尋樹Python
- [Python手撕]不同的二叉搜尋樹Python
- 程式碼隨想錄演算法訓練營第十七天| 654.最大二叉樹 , 617.合併二叉樹 , 700.二叉搜尋樹中的搜尋 , 98.驗證二叉搜尋樹演算法二叉樹
- 程式碼隨想錄 第23天 | 669. 修剪二叉搜尋樹 ● 108.將有序陣列轉換為二叉搜尋樹 ● 538.把二叉搜尋樹轉換為累加樹 ● 總結篇陣列
- 資料結構-二叉搜尋樹的實現資料結構
- Java實現二叉搜尋樹的插入、刪除Java
- 二叉搜尋樹(Binary Search Tree)(Java實現)Java
- 【LeetCode】98. 驗證二叉搜尋樹LeetCode
- 二叉樹的插入和搜尋–python實現二叉樹Python
- LeetCode 95 | 構造出所有二叉搜尋樹LeetCode
- LeetCode-173-二叉搜尋樹迭代器LeetCode