我很想知道如何将多个整数添加到 Java 中 LinkedList 中的节点(单循环)。我在 SO 上找到了一个线程并正在阅读它,但不确定它是如何工作的。以为我会重新提出这个问题,看看我是否能得到答案。
这是我的节点类
public class LinkedList{
private class Node{
private int pid;
private int time;
private Node next;
public Node(int pid, int time){
this.pid=pid;
this.time=time;
}
}
int size;
Node head;
这是我在执行任何删除或类似操作之前正在尝试的添加。
public void add(int pid, int time) {
Node curr=head;
Node newNode=new Node(pid, time);
if(head==null){
head=newNode;
newNode.next=head;
}//end if
else{
while(curr.next!=head){
curr = curr.next;
}//end while
curr.next=newNode;
newNode.next=head;
}//end else
size++;
}//end add
}
这是我到目前为止所拥有的,但是当我尝试输入两个整数时,我在private int time
我做错了什么?我正在读取一个文件,然后将两个整数存储在一个节点中,然后做同样的事情,直到文件被完全读取。我的文件读取得很好,我将两个整数存储为文件中的整数,但我似乎还不能让它将整数存储在节点中