数据结构(java)----BinarySearchTree

写一个BST的java语言实现

import org.omg.CORBA.UserException;


public class BinarySearchTree<AnyType extends Comparable<? super AnyType>> 
{

    private static class BinaryNode<AnyType>
    {
        BinaryNode(AnyType theElement){this(theElement,null,null);}
        BinaryNode(AnyType theElement,BinaryNode<AnyType> lt,BinaryNode<AnyType> rt)
        {
            element = theElement;
            left = lt;
            right = rt;
        }
        AnyType element;
        BinaryNode<AnyType> left;
        BinaryNode<AnyType> right;
    }
    private BinaryNode root;

    public BinarySearchTree(){root = null;}
    public void makeEmpty(){root = null;}
    public boolean isEmpty(){return root == null;}
    public boolean contains(AnyType x){ return contains(x,root);}
    public AnyType findMin()
    {   return findMin(root).element;   }
    public AnyType findMax()
    {   return findMax(root).element;   }
    public void insert(AnyType x)
    {   root = insert(x,root);  }
    public void remove(AnyType x)
    {   root = remove(x,root);}
    public void preOrderSearch(){
        preOrderSearch(root);
    }

    private void preOrderSearch(BinaryNode<AnyType> t){
        if(t != null)
        {
            System.out.println(t.element);
            preOrderSearch(t.left);
            preOrderSearch(t.right);
        }
    }
    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;
    }
    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)
            return null;
        else if(t.right == null)
            return t;
        return findMax(t.right);
    }
    private BinaryNode<AnyType> insert (AnyType x, BinaryNode <AnyType> t)
    {
        if(t == null)
            return new BinaryNode(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 ;//do nothing
            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)//Two children
        {
            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 static void main(String[] args) {
        BinarySearchTree bst = new BinarySearchTree();
        bst.insert(new Integer(10));
        bst.insert(new Integer(20));
        bst.insert(new Integer(30));
        bst.insert(new Integer(5));
        bst.insert(new Integer(15));
        bst.preOrderSearch();

    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值