gpt4 book ai didi

Java:链接列表节点在我的代码中不起作用

转载 作者:行者123 更新时间:2023-12-02 02:49:12 30 4
gpt4 key购买 nike

所以我非常熟悉链表,创建节点非常令人困惑。对于我的程序,我必须在主类中创建一个名为 insertAfter(TrackerNode nodeLoc) 的方法,该方法引用我为在节点中插入数据而创建的另一个类。用户输入最初是节点总数,然后是每个节点的数据(名称和年龄)。

最佳答案

您发布的代码存在一些问题,age 字段(根据您请求的输出)应该是 int 并且您需要记住您的订单在构造函数中声明 agename。还可以使用 this() 来缩短重复的构造函数;我更喜欢使用 toString() 而不是自定义数据转储方法。就像,

public class TrackerNode {
private int age;
private String name;
private TrackerNode nextNodeRef; // Reference to the next node

public TrackerNode() {
this("", 0);
}

public TrackerNode(String name, int age) {
this(name, age, null);
}

public TrackerNode(String name, int age, TrackerNode nextLoc) {
this.age = age;
this.name = name;
this.nextNodeRef = nextLoc;
}

public void insertAfter(TrackerNode nodeLoc) {
TrackerNode tmpNext = this.nextNodeRef;
this.nextNodeRef = nodeLoc;
nodeLoc.nextNodeRef = tmpNext;
}

// Get location pointed by nextNodeRef
public TrackerNode getNext() {
return this.nextNodeRef;
}

@Override
public String toString() {
return String.format("%s, %d", this.name, this.age);
}
}

那么你的main循环实际上应该使用你读取的i,并且你需要在打印之前重置到头节点。比如,

public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);

// References for TrackerNode objects
TrackerNode headNode = null, currNode = null, lastNode = null;

// Scan the number of nodes
int i = scnr.nextInt();

// in data and insert into the linked list
for (int k = 0; k < i; k++) {
String name = scnr.next();
int age = scnr.nextInt();
scnr.nextLine();
if (lastNode != null) {
currNode = new TrackerNode(name, age);
lastNode.insertAfter(currNode);
} else {
currNode = headNode = new TrackerNode(name, age);
}
lastNode = currNode;
}

// Print linked list
currNode = headNode;
while (currNode != null) {
System.out.println(currNode);
currNode = currNode.getNext();
}
}

我使用您提供的输入进行了测试(并且我收到的输出似乎符合发布的期望):

3
John
22
Silver
24
Smith
21
John, 22
Silver, 24
Smith, 21

关于Java:链接列表节点在我的代码中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57121917/

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