gpt4 book ai didi

Java获取方法移动到前面而不是后面

转载 作者:行者123 更新时间:2023-12-01 18:57:10 25 4
gpt4 key购买 nike

我有一个 add 方法,它将最新的文本字符串插入到列表的末尾,我希望它作为第一个文本字符串插入。任何帮助表示赞赏。方法如下:

 public void add (Magazine mag)
{

MagazineNode node = new MagazineNode (mag);
MagazineNode current;

if (list == null)
list = node;
else
{
current = list;
while (current.next != null)
current = current.next;
current.next = node;
}
}

最佳答案

假设我了解您的需求(可能会有所不同),我认为您需要以下方法。

public void add_first (Magazine mag)
{
MagazineNode node = new MagazineNode (mag);

// make the new first node point to the current root
node.next=list;

// update the root to the new first node
list=node;
}

关于Java获取方法移动到前面而不是后面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13577077/

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