2023-01-06 03:39:19 +08:00
|
|
|
/**
|
2022-11-25 02:04:38 +08:00
|
|
|
* File: binary_search_tree.java
|
|
|
|
* Created Time: 2022-11-25
|
2024-02-07 22:21:18 +08:00
|
|
|
* Author: krahets (krahets@163.com)
|
2022-11-25 02:04:38 +08:00
|
|
|
*/
|
|
|
|
|
2022-11-15 04:55:19 +08:00
|
|
|
package chapter_tree;
|
|
|
|
|
2023-04-24 04:11:18 +08:00
|
|
|
import utils.*;
|
2022-11-15 04:55:19 +08:00
|
|
|
|
2022-11-29 02:21:49 +08:00
|
|
|
/* 二叉搜索树 */
|
2022-11-15 04:55:19 +08:00
|
|
|
class BinarySearchTree {
|
|
|
|
private TreeNode root;
|
|
|
|
|
2023-08-31 02:31:31 +08:00
|
|
|
/* 构造方法 */
|
|
|
|
public BinarySearchTree() {
|
|
|
|
// 初始化空树
|
|
|
|
root = null;
|
2022-11-15 04:55:19 +08:00
|
|
|
}
|
|
|
|
|
2023-04-09 04:32:17 +08:00
|
|
|
/* 获取二叉树根节点 */
|
2022-11-15 04:55:19 +08:00
|
|
|
public TreeNode getRoot() {
|
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
2023-04-09 04:32:17 +08:00
|
|
|
/* 查找节点 */
|
2022-11-15 04:55:19 +08:00
|
|
|
public TreeNode search(int num) {
|
|
|
|
TreeNode cur = root;
|
2023-04-09 04:32:17 +08:00
|
|
|
// 循环查找,越过叶节点后跳出
|
2022-11-15 04:55:19 +08:00
|
|
|
while (cur != null) {
|
2023-04-09 04:32:17 +08:00
|
|
|
// 目标节点在 cur 的右子树中
|
2023-04-14 00:12:10 +08:00
|
|
|
if (cur.val < num)
|
|
|
|
cur = cur.right;
|
2023-04-09 04:32:17 +08:00
|
|
|
// 目标节点在 cur 的左子树中
|
2023-04-14 00:12:10 +08:00
|
|
|
else if (cur.val > num)
|
|
|
|
cur = cur.left;
|
2023-04-09 04:32:17 +08:00
|
|
|
// 找到目标节点,跳出循环
|
2023-04-14 00:12:10 +08:00
|
|
|
else
|
|
|
|
break;
|
2022-11-15 04:55:19 +08:00
|
|
|
}
|
2023-04-09 04:32:17 +08:00
|
|
|
// 返回目标节点
|
2022-11-15 04:55:19 +08:00
|
|
|
return cur;
|
|
|
|
}
|
|
|
|
|
2023-04-09 04:32:17 +08:00
|
|
|
/* 插入节点 */
|
2023-04-14 05:47:20 +08:00
|
|
|
public void insert(int num) {
|
2023-08-31 02:31:31 +08:00
|
|
|
// 若树为空,则初始化根节点
|
|
|
|
if (root == null) {
|
|
|
|
root = new TreeNode(num);
|
2023-04-14 05:47:20 +08:00
|
|
|
return;
|
2023-08-31 02:31:31 +08:00
|
|
|
}
|
2022-11-15 04:55:19 +08:00
|
|
|
TreeNode cur = root, pre = null;
|
2023-04-09 04:32:17 +08:00
|
|
|
// 循环查找,越过叶节点后跳出
|
2022-11-15 04:55:19 +08:00
|
|
|
while (cur != null) {
|
2023-04-09 04:32:17 +08:00
|
|
|
// 找到重复节点,直接返回
|
2023-04-14 00:12:10 +08:00
|
|
|
if (cur.val == num)
|
2023-04-14 05:47:20 +08:00
|
|
|
return;
|
2022-11-15 04:55:19 +08:00
|
|
|
pre = cur;
|
2023-01-17 01:53:12 +08:00
|
|
|
// 插入位置在 cur 的右子树中
|
2023-04-14 00:12:10 +08:00
|
|
|
if (cur.val < num)
|
|
|
|
cur = cur.right;
|
2023-01-17 01:53:12 +08:00
|
|
|
// 插入位置在 cur 的左子树中
|
2023-04-14 00:12:10 +08:00
|
|
|
else
|
|
|
|
cur = cur.left;
|
2022-11-15 04:55:19 +08:00
|
|
|
}
|
2023-05-17 19:04:46 +08:00
|
|
|
// 插入节点
|
2022-11-15 04:55:19 +08:00
|
|
|
TreeNode node = new TreeNode(num);
|
2023-04-14 00:12:10 +08:00
|
|
|
if (pre.val < num)
|
|
|
|
pre.right = node;
|
|
|
|
else
|
|
|
|
pre.left = node;
|
2022-11-15 04:55:19 +08:00
|
|
|
}
|
|
|
|
|
2023-04-09 04:32:17 +08:00
|
|
|
/* 删除节点 */
|
2023-04-14 05:47:20 +08:00
|
|
|
public void remove(int num) {
|
2022-11-15 04:55:19 +08:00
|
|
|
// 若树为空,直接提前返回
|
2023-04-14 00:12:10 +08:00
|
|
|
if (root == null)
|
2023-04-14 05:47:20 +08:00
|
|
|
return;
|
2022-11-15 04:55:19 +08:00
|
|
|
TreeNode cur = root, pre = null;
|
2023-04-09 04:32:17 +08:00
|
|
|
// 循环查找,越过叶节点后跳出
|
2022-11-15 04:55:19 +08:00
|
|
|
while (cur != null) {
|
2023-04-09 04:32:17 +08:00
|
|
|
// 找到待删除节点,跳出循环
|
2023-04-14 00:12:10 +08:00
|
|
|
if (cur.val == num)
|
|
|
|
break;
|
2022-11-15 04:55:19 +08:00
|
|
|
pre = cur;
|
2023-04-09 04:32:17 +08:00
|
|
|
// 待删除节点在 cur 的右子树中
|
2023-04-14 00:12:10 +08:00
|
|
|
if (cur.val < num)
|
|
|
|
cur = cur.right;
|
2023-04-09 04:32:17 +08:00
|
|
|
// 待删除节点在 cur 的左子树中
|
2023-04-14 00:12:10 +08:00
|
|
|
else
|
|
|
|
cur = cur.left;
|
2022-11-15 04:55:19 +08:00
|
|
|
}
|
2023-04-09 04:32:17 +08:00
|
|
|
// 若无待删除节点,则直接返回
|
2023-04-14 00:12:10 +08:00
|
|
|
if (cur == null)
|
2023-04-14 05:47:20 +08:00
|
|
|
return;
|
2023-04-09 04:32:17 +08:00
|
|
|
// 子节点数量 = 0 or 1
|
2022-11-15 04:55:19 +08:00
|
|
|
if (cur.left == null || cur.right == null) {
|
2023-04-09 04:32:17 +08:00
|
|
|
// 当子节点数量 = 0 / 1 时, child = null / 该子节点
|
2022-11-15 04:55:19 +08:00
|
|
|
TreeNode child = cur.left != null ? cur.left : cur.right;
|
2023-04-09 04:32:17 +08:00
|
|
|
// 删除节点 cur
|
2023-05-26 20:34:22 +08:00
|
|
|
if (cur != root) {
|
|
|
|
if (pre.left == cur)
|
|
|
|
pre.left = child;
|
|
|
|
else
|
|
|
|
pre.right = child;
|
|
|
|
} else {
|
|
|
|
// 若删除节点为根节点,则重新指定根节点
|
|
|
|
root = child;
|
|
|
|
}
|
2022-11-15 04:55:19 +08:00
|
|
|
}
|
2023-04-09 04:32:17 +08:00
|
|
|
// 子节点数量 = 2
|
2022-11-15 04:55:19 +08:00
|
|
|
else {
|
2023-04-09 04:32:17 +08:00
|
|
|
// 获取中序遍历中 cur 的下一个节点
|
2023-04-14 05:47:20 +08:00
|
|
|
TreeNode tmp = cur.right;
|
|
|
|
while (tmp.left != null) {
|
|
|
|
tmp = tmp.left;
|
|
|
|
}
|
|
|
|
// 递归删除节点 tmp
|
|
|
|
remove(tmp.val);
|
|
|
|
// 用 tmp 覆盖 cur
|
|
|
|
cur.val = tmp.val;
|
2022-11-15 04:55:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public class binary_search_tree {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
/* 初始化二叉搜索树 */
|
2023-08-31 02:31:31 +08:00
|
|
|
BinarySearchTree bst = new BinarySearchTree();
|
|
|
|
// 请注意,不同的插入顺序会生成不同的二叉树,该序列可以生成一个完美二叉树
|
|
|
|
int[] nums = { 8, 4, 12, 2, 6, 10, 14, 1, 3, 5, 7, 9, 11, 13, 15 };
|
|
|
|
for (int num : nums) {
|
|
|
|
bst.insert(num);
|
|
|
|
}
|
2022-11-15 04:55:19 +08:00
|
|
|
System.out.println("\n初始化的二叉树为\n");
|
|
|
|
PrintUtil.printTree(bst.getRoot());
|
|
|
|
|
2023-04-09 04:32:17 +08:00
|
|
|
/* 查找节点 */
|
2023-01-10 12:16:02 +08:00
|
|
|
TreeNode node = bst.search(7);
|
2023-04-09 04:32:17 +08:00
|
|
|
System.out.println("\n查找到的节点对象为 " + node + ",节点值 = " + node.val);
|
2022-11-15 04:55:19 +08:00
|
|
|
|
2023-04-09 04:32:17 +08:00
|
|
|
/* 插入节点 */
|
2023-04-14 05:47:20 +08:00
|
|
|
bst.insert(16);
|
2023-04-09 04:32:17 +08:00
|
|
|
System.out.println("\n插入节点 16 后,二叉树为\n");
|
2022-11-15 04:55:19 +08:00
|
|
|
PrintUtil.printTree(bst.getRoot());
|
|
|
|
|
2023-04-09 04:32:17 +08:00
|
|
|
/* 删除节点 */
|
2022-11-15 04:55:19 +08:00
|
|
|
bst.remove(1);
|
2023-04-09 04:32:17 +08:00
|
|
|
System.out.println("\n删除节点 1 后,二叉树为\n");
|
2022-11-15 04:55:19 +08:00
|
|
|
PrintUtil.printTree(bst.getRoot());
|
|
|
|
bst.remove(2);
|
2023-04-09 04:32:17 +08:00
|
|
|
System.out.println("\n删除节点 2 后,二叉树为\n");
|
2022-11-15 04:55:19 +08:00
|
|
|
PrintUtil.printTree(bst.getRoot());
|
|
|
|
bst.remove(4);
|
2023-04-09 04:32:17 +08:00
|
|
|
System.out.println("\n删除节点 4 后,二叉树为\n");
|
2022-11-15 04:55:19 +08:00
|
|
|
PrintUtil.printTree(bst.getRoot());
|
|
|
|
}
|
|
|
|
}
|