二叉排序树

二叉排序树

1.定义

​ 一棵空树,或者是具有下列性质的:

(1)若左子树不空,则左子树上所有结点的值均小于它的根结点的值;

(2)若右子树不空,则右子树上所有结点的值均大于它的根结点的值;

(3)左、右子树也分别为二叉排序树;

(4)没有键值相等的结点。

2.构建

8,3,10,1,6,14,4,7,13构建的树。

3.代码实现

public class BinarySortTree {
    //根节点
    Node root = null;
    
    //添加节点,
    public void add(int value) {
        if (root != null) {
            root.add(new Node(value));
            return;
        }
        root = new Node(value);


    }
    //中序遍历平衡二叉树
    public void infixOrder() {
        if (root == null) {
            System.out.println("二叉树为空");
            return;
        }
        root.infixOrder();
    }
    
    //搜索节点
    public Node search(int value) {
        return root.search(value);

    }
    //搜索父节点
    public Node searchParent(int value) {
        return root.searchParent(value);
    }
    /* 
           删除分为3种情况
           1.删除的是叶子节点,寻找父节点,判断是左还是右子节点。然后直接删除。
           2.删除的只有一个子节点。找到其父元素首先判断是左还是右节点,然后直接将父节点的指向。被删除节点的子节点。
           3.删除的节点有两个子节点,找到被删除的节点的 左子树(右子树) 找到其中最大(小)的节点。将其数据直接移动到被删除节点的位置即可。
     */
    public void delete(int value) {
        if (root == null) {
            return;
        }
        Node node = search(value);
        Node parentNode = searchParent(value);
        //是否为叶子节点
        if (node.left == null && node.right == null) {
            if (node.value < parentNode.value) {
                parentNode.left = null;
            } else {
                parentNode.right = null;
            }
            return;
        }
        //是否有两个叶子节点
        if (node.left != null && node.right != null) {
            Node min = root.searchMin(node.right);
            delete(min.value);
            node.value = min.value;
            return;
        }

        //一个节点
        if (node.left==null) {
        	if (parentNode==null) {
                root = node.right;
                return;
            }
            if (node.value < parentNode.value) {
                parentNode.left =node.right;
            } else {
                parentNode.right = node.right;
            }
        }else {
        	if (parentNode==null) {
                root = node.left;
                return;
            }
            if (node.value < parentNode.value) {
                parentNode.left =node.left;
            } else {
                parentNode.right = node.left;
            }

        }

    }

}
//节点
class Node {
    int value;
    Node left;
    Node right;

    public Node(int value) {
        this.value = value;
    }
    //添加节点,递归查找位置
    public void add(Node node) {
        if (node.value < this.value) {
            if (this.left == null) {
                this.left = node;
            } else {
                this.left.add(node);
            }
        } else {
            if (this.right == null) {
                this.right = node;
            } else {
                this.right.add(node);
            }

        }


    }
    //搜索。
    public Node search(int value) {
        if (this.value == value) {
            return this;
        }

        if (value < this.value) {
            if (this.left != null) {
                return this.left.search(value);
            }
        } else {
            if (this.right != null) {
                return this.right.search(value);
            }
        }

        return null;
    }
    //搜索父节点,从根节点开始。
    public Node searchParent(int value) {
        //找到父节点
        if ((this.left != null && value == this.left.value) || (this.right != null && value == this.right.value)) {
            return this;
        }
        if (this.left != null && value < this.value) {
            return this.left.searchParent(value);
        }
        if (this.right != null && value >= this.value) {
            return this.right.searchParent(value);
        }
        
        return null;

    }

    //寻找最小的节点。一直往右
    public Node searchMin(Node node) {
        while (node.left != null) {
            node = node.left;
        }
        return node;
    }
    
    //中序遍历
    public void infixOrder() {
        if (this.left != null) {
            this.left.infixOrder();
        }
        System.out.println(value);
        if (this.right != null) {
            this.right.infixOrder();
        }
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值