为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用三个参数将节点插入到 Treap 上

如何使用三个参数将节点插入到 Treap 上

呼如林 2024-01-25 21:30:38
我在将 Treapnode 插入 Treap 时遇到问题。它接受 3 个参数。添加(E 键,P 优先级,treapnode x)。我尝试了很多方法,但总是出现空指针异常。我尝试检查左右树中的空情况。private TreapNode add (E key, P priority, TreapNode x)        throws ElementFoundException {    // For You To Complete    int compare = key.compareTo(x.element());    if (x == null){        return new TreapNode(key, priority);    }    //root is larger than the key    else if (compare == 0) {        throw new ElementFoundException("Element was found, and tree was not changed.");    } else if (compare < 0) {        if (x.left() == null) {         //TreapNode y = new TreapNode(key, priority);            TreapNode y = x.left;            x.left = y.right;            y.right = x;            return y;        } else {            x.left = add(key, priority, x.left());        }    }    //root is smaller than the key    else if (compare > 0) {        if (x.right() == null) {            //TreapNode y = new TreapNode(key, priority);            TreapNode z = x.right;            x.right = z.left;            z.left = x;            return z;        }    }    return x;}
查看完整描述

1 回答

?
MM们

TA贡献1886条经验 获得超2个赞

这是你做错了x.right()。情况也是如此x.left()


if (x.right() == null) {

        //TreapNode y = new TreapNode(key, priority);

        TreapNode z = x.right; // z = null

        x.right = z.left;  // z.left will throw NPE

应该


if (x.right() == null) {

   x.right() = new TreapNode(key, priority);

   return x; // return parent node 

}

另外,我认为这也是一个错误的比较,int不能null但是Integer类可以


int compare = key.compareTo(x.element());  //comoareTo return an int 

if (x == null){  // does not make sense to compare and int type to Object type

  ....

}


查看完整回答
反对 回复 2024-01-25
  • 1 回答
  • 0 关注
  • 28 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信