private class Node{
int num;
Node next;
Node prev;
Node (int num){
this.num=num;
this.next=null;
this.prev=null;
}
}
Scanner sc = new Scanner(System.in);
System.out.println("Enter file name");
String fileName = sc.next();
Scanner s = new Scanner (new File(fileName));
while(s.hasNextLine()){
//No idea
}
文件例如:添加到雙向鏈表
//Skip this 3 6 2
a 3 b 8
2 3 4
我希望能夠去通過文件的每一行,在評論中跳過的一切,並把剛每個前兩個數字列入雙向鏈表。我一直在嘗試一段時間,但我是雙鏈表的新手,我無法弄清楚。另外我希望能夠做到這一點,而不使用ArrayList。
所以...你的雙向鏈表實例在哪裏? – Makoto
那麼目前你沒有*任何東西*與鏈接列表。是否需要構建自己的鏈接列表類或使用Java內置的鏈接列表? –