public IntNode first;
public class IntNode{
public int item;
public IntNode next;
public IntNode(int i, IntNode n) {
item = i;
next = n;
}
public void addLast(int x) {
IntNode p = first;
while (p.next!=null) {
p = p.next;
}
p.next = new IntNode(x,null);
}
私はIntNodeの最後に整数xを加えたいと思います。繰り返しました。どのように再帰を使用してそれを行うには?再帰を使用してIntlistの最後に整数を追加する方法はありますか?
ヒント:関数に2番目のパラメータが必要です。 –