二叉查找树

/*二叉查找树
2017-1-3 adr daoyuan
*/
public class BinarySearchTree<AnyType extends Comparable<? super AnyType>> {
    //嵌套类--定义节点的有关性质
    private static class BinaryNode<AnyType>{
        AnyType element;
        BinaryNode<AnyType> left;
        BinaryNode<AnyType> right;
        BinaryNode(AnyType theElement){
            this(theElement,null,null);}
        BinaryNode(AnyType theElement,BinaryNode<AnyType> lt,BinaryNode<AnyType> rt){
            element=theElement;
            left=lt;
            right=rt;
        }
    }
    private BinaryNode<AnyType> root;
    public BinarySearchTree(){
        root=null;
    }
    public void makeEmpty(){root=null;}
    public boolean isEmpty(){
        return root==null;
    }
    //contains函数的书写;
    public boolean contains(AnyType x){
        return contains(x,root);
    }
    private boolean contains(AnyType x,BinaryNode<AnyType> t){
        if(t==null) return false;
        int compareResult=x.compareTo(t.element);
        if(compareResult<0)
            return  contains(x,t.left);
        else if(compareResult>0)
            return contains(x,t.right);
        else
            return true;
    }
    public AnyType findMin(){
        if(isEmpty()) throw new RuntimeException("树为空");
        return findMin(root).element;
    }
    private BinaryNode<AnyType> findMin(BinaryNode<AnyType> t){
        if(t==null) return null;
        else if(t.left==null)return t;
        return findMin(t.left);
    }
    private BinaryNode<AnyType> findMax(BinaryNode<AnyType> t){
        if(t!=null)
            while (t.right!=null)
                t=t.right;
        return t;
    }
    public void insert(AnyType x){
        root=insert(x,root);
    }
    private BinaryNode<AnyType> insert(AnyType x,BinaryNode<AnyType>t){
        if(t==null)
            return new BinaryNode<AnyType>(x,null,null);
        int compareResult=x.compareTo(t.element);
        if(compareResult<0)  t.left=insert(x,t.left);
        else if(compareResult>0){
            t.right=insert(x,t.right);
        }else
            ;
        return t;
    }
    private BinaryNode<AnyType> remove(AnyType x,BinaryNode<AnyType>t){
        if(t==null)
            return t;
        int compareResult=x.compareTo(t.element);
        if(compareResult<0)
            t.left=remove(x,t.left);
        else if(compareResult>0)
            t.right=remove(x,t.right);
        else if(t.left!=null&&t.right!=null){
            t.element=findMin(t.right).element;
            t.right=remove(t.element,t.right);
        }else
            t=(t.left!=null)?t.left:t.right;
        return t;
    }
    //二叉树的遍历,按照顺序,先左字树,节点,再右子树
    public void printTree(BinaryNode<AnyType> t){
        if(t!=null){
            printTree(t.left);
            System.out.println(t.element);
            printTree(t.right);
        }

    }
    public void printTree(){
        if(isEmpty()){
            System.out.println("Empty tree");
        }else
            printTree(root);
    }
    public static void main(String[] args){
       // BinaryNode binaryNode=new BinaryNode("A");
        BinarySearchTree binarySearchTree=new BinarySearchTree();
        binarySearchTree.insert("1");
        binarySearchTree.insert("5");
        binarySearchTree.insert("3");
        binarySearchTree.insert("7");
        binarySearchTree.printTree();
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值