gpt4 book ai didi

java - 在链表中的特定点插入

转载 作者:行者123 更新时间:2023-12-02 08:19:22 25 4
gpt4 key购买 nike

我是编程新手,我不知道如何在链表中的特定位置插入节点。它必须插入位置 3。我们将非常感谢有关插入逻辑的帮助。

public void ins (Player p)
{
PlayerNode current = head;
PlayerNode previous = head;
PlayerNode pn = new PlayerNode (new Player (p));
int count=0;
if (isEmpty())
{
pn.setNext(head);
head = pn;
++numberOfItems;

}
else
{
if (count != 3)
{
current = current.getNext();
previous.setNext(pn);
pn.setNext(current);

++count;
}
}
}

最佳答案

为什么不使用内置函数?

add(int index, E element)

关于java - 在链表中的特定点插入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5762447/

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