gpt4 book ai didi

java - 在 linkedList 的末尾添加一个元素

转载 作者:行者123 更新时间:2023-11-29 05:24:20 25 4
gpt4 key购买 nike

<分区>

任务是使用 boolean 值在 linkedList 的末尾附加一个元素

/**
* Appends the specified element to the end of this list
* @param element element to add to the list
* @return true
* @throws NullPointerException when element is null
*/

我的解决方案

public boolean add(T element) {
ListNode newElement = new ListNode (element);
while (cur.link == !null) {
cur = cur.link;
cur.link = newElement(element, null);
if (cur==null) {
throw new NullPointerException;
}
}
return true;
}

在更正我的代码时需要帮助。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com