高阶-二叉搜索树详解

这篇博客介绍了二叉搜索树的概念,包括其性质和结构。接着,展示了如何使用Java实现二叉搜索树,包括插入、搜索和删除节点的方法。最后,通过示例展示了插入和删除操作对树结构的影响,并提供了前序、中序和后序遍历的打印方法。
摘要由CSDN通过智能技术生成

1.二叉搜索树又称二叉排序树,它或者是一棵空树,或者是具有以下性质的二叉树:
(1)若它的左子树不为空,则左子树上所有节点的值都小于根节点的值
(2)若它的右子树不为空,则右子树上所有节点的值都大于根节点的值
(3)它的左右子树也分别为二叉搜索树
在这里插入图片描述
2.二叉搜索树的实现

class BSNode {
    public int val;
    public BSNode left;
    public BSNode right;

    public BSNode() {
    }

    public BSNode(int val) {
        this.val = val;
    }
    public BSNode root = null;

    public boolean insert(int val) {
        BSNode node = new BSNode(val);
        if(root == null) {
            root = node;
            return true;
        }
        BSNode cur = root;
        BSNode par = null;
        while (cur != null) {
            if(cur.val == val) {
                return false;
            } else if (cur.val > val){
                par = cur;
                cur = cur.left;
            } else {
                par = cur;
                cur = cur.right;
            }
        }
        if(par.val > val) {
            par.left = node;
        } else {
            par.right = node;
        }
        return true;
    }

    public boolean search(int val) {
        if(root == null) return false;
        BSNode cur = root;
        while (cur != null) {
            if(cur.val == val) {
                return true;
            } else if(cur.val > val) {
                cur = cur.left;
            } else {
                cur = cur.right;
            }
        }
        return false;
    }
    public void remove(int val) {
        if(root == null) return;
        BSNode cur = root;
        BSNode pre = null;
        while (cur != null) {
            if(cur.val == val) {
                //删除操作
                removeNode(val,pre,cur);
            } else if (cur.val > val) {
                pre = cur;
                cur = cur.left;
            } else {
                pre = cur;
                cur = cur.right;
            }
        }
    }
    public void removeNode(int val, BSNode pre, BSNode cur) {
        if(cur.left == null) {
            if (root == cur) {
                root = cur.right;
            } else if(cur == pre.left){
                pre.left = cur.right;
            } else if (cur == pre.right) {
                pre.right = cur.right;
            }
        } else if (cur.right == null) {
            if(root == cur) {
                root = cur.left;
            } else if(cur == pre.left) {
                pre.left = cur.left;
            } else if (cur == pre.right) {
                pre.right = cur.left;
            }
        } else {
            BSNode targetParent = cur;
            BSNode target = cur.right;
            while (target.left != null) {
                targetParent = target;
                target = target.left;
            }
            cur.val = target.val;
            if(target == targetParent.left) {
                targetParent.left = target.right;
            } else {
                targetParent.right = target.right;
            }
        }
    }
}

public class BST1 {
    public static void preOrder(BSNode root) {
        if(root != null) {
            System.out.print(root.val+" ");
            preOrder(root.left);
            preOrder(root.right);
        }
    }
    public static void inOrder(BSNode root) {
        if(root != null) {
            inOrder(root.left);
            System.out.print(root.val+" ");
            inOrder(root.right);
        }
    }
    public static void postOrder(BSNode root) {
        if(root != null) {
            postOrder(root.left);
            postOrder(root.right);
            System.out.print(root.val+" ");
        }
    }
    public static void main(String[] args) {
        BSNode bsNode = new BSNode();
        bsNode.insert(4);
        bsNode.insert(3);
        bsNode.insert(1);
        bsNode.insert(15);
        preOrder(bsNode.root);
        System.out.println();
        System.out.println(bsNode.search(3));
        System.out.println(bsNode.search(2));
        bsNode.remove(1);
        preOrder(bsNode.root);
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值