JAVA数据结构-LinkedList,ArrayList,Tree,

最近看了部分Java的源码后,稍微理解了一点源码对于LinkedList,ArrayList,Tree的写法。所以在此,记录自己对于这些数据结构的仿写,以方便以后的复习。
(一)Tree

public class Node<T> {
    T t;
    Node<T> left;
    Node<T> right;

    public Node(Node<T> left,T t,Node<T> right){
        this.left = left;
        this.t = t;
        this.right = right;
    }
}

public class Tree<T> implements Comparable<T>{

    Node<T> now;
    Node<T> root;
    Integer size = 0;

    public Tree(T t){
        root = new Node<T>(null,t,null);
        size++;
    }

    public void add(T t){
        if(!checkRoot(t)){
            now = root;
            judge(t);
            size++;
        }
    }


    /**
     * @param t
     *  判断当前值和t的大小,t小就在左,大则在右
     */
    public void judge(T t){
        int compare = this.compareTo(t);
        if(compare<0){
            if(now.right!=null){
                now = now.right;
                judge(t);
            }else{
                now.right = new Node<T>(null,t,null);
            }
        }else if(compare>0){
            //小,如果下一个left不为空,则跟下一个left比较,一直到放置在最合理的位置
            if(now.left!=null){
                now = now.left;
                judge(t);
            }else{
                now.left = new Node<T>(null,t,null);
            }
        }else if(compare == 0){
            now.t = t;
            size--;
        }
    }

    /**
     * @param t
     *  判断是否有根节点,没有就自动创建一个
     */
    public boolean checkRoot(T t){
        if(root==null){
            root = new Node<>(null,t,null);
            
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值