基于java实现二叉树的添加/删除/查找操作

二叉树的添加/删除/查找

public class BinaryTree {
    public static Node insert(Node root, int k) {
        if (root == null) {
            return new Node(k);
        }
        if(k<root.val){
            root.l = insert(root.l,k);
        }else{
            root.r = insert(root.r,k);
        }
        return root;
    }
​
    public static Node search(Node root,int k){
        if(root==null||root.val==k){
            return root;
        }
        if(k<root.val){
            return search(root.l,k);
        }
        return search(root.r,k);
    }
​
    public static Node delete(Node root,int k){
        if(root==null)
            return null;
        if(k<root.val){
            root.l = delete(root.l,k);
        }else if(k>root.val){
            root.r = delete(root.r,k);
        }else{
            if(root.l==null)
                return root.r;
            if(root.r==null)
                return root.l;
            Node temp = root.r; // 取右节点的最左子节点进行替代
            while(temp.l!=null)
                temp = temp.l;
            root.val = temp.val;
            root.r = delete(root.r,root.val);
        }
        return root;
    }
​
    public static void main(String[] args) {
        Node node = new Node(5);
        insert(node,1);
        insert(node,2);
        insert(node,3);
        insert(node,6);
        insert(node,7);
        insert(node,8);
        System.out.println(node);
        delete(node,6);
        System.out.println(node);
    }
}
​
class Node {
    int val;
    Node l = null;
    Node r = null;
​
    Node() {
    }
​
    Node(int k) {
        val = k;
    }
​
    @Override
    public String toString() {
        return "{" +
                "'val':" + val +
                ",'l':" + l +
                ",'r':" + r +
                '}';
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值