リンク リストの作成とテストに使用している Node クラスと TestMain クラスがあります。Node クラスの toString メソッドをオーバーライドして、Node (値と次) を出力しました。しかし、リストを再帰的に出力しています。指定したノードのみを印刷したい。誰か教えてくれませんか
- toString がリスト全体を再帰的に出力するのはなぜですか?
- main() で必要なノードのみを出力するために変更する必要があるもの
public class Node {
private int value;
private Node next;
Node(int value){
this.value=value;
}
public int getValue() {
return value;
}
public void setValue(int value) {
this.value = value;
}
public Node getNext() {
return next;
}
public void setNext(Node next) {
this.next = next;
}
public String toString(){
return "value = " + this.value + ", next = " + getNext();
}
}
public class TestMain {
public static void main(String[] args) {
System.out.println("Begin TestMain \n");
Node head = new Node(10);
Node n1 = new Node(11);
Node n2 = new Node(12);
Node n3 = new Node(13);
head.setNext(n1);
n1.setNext(n2);
n2.setNext(n3);
System.out.println("Head : " + head);
System.out.println("n1 : " + n1);
System.out.println("n2 : " + n2);
System.out.println("n3 : " + n3);
System.out.println("\nEnd TestMain");
}
}
//>>>>>> output <<<<<<<<<
Begin TestMain
Head : value = 10, next = value = 11, next = value = 12, next = value = 13, next = null
n1 : value = 11, next = value = 12, next = value = 13, next = null
n2 : value = 12, next = value = 13, next = null
n3 : value = 13, next = null
End TestMain
//>>>>> Expected Output <<<<<<<<
Begin TestMain
Head : value = 10, next = addressOf-n1
n1 : value = 11, next = addressOf-n2
n2 : value = 12, next = addressOf-n3
n3 : value = 13, next = null
End TestMain