嘿伙计们,我在尝试实现单链表的附加方法时遇到了麻烦。这是代码:
public void append ( int item ) {
//inserts item to the end of the list
if ( head == null){
head = new LinkInt();
curr = head;
curr.elem = item;
}
else{
LinkInt temp = head;
while ( temp.next != null){
temp = temp.next;}
temp.elem = item;
}
}
这是我的打印方法(不确定它是否正确):
public void print () {
//outprint the array
//ie. <1, 2, |3, 4>
if ( head == null) {
System.out.print("<");
System.out.print(">");
}
else{
LinkInt temp = head;
System.out.print("<");
while ( temp != null) {
if ( temp == curr){
System.out.print( "|" + temp.elem + ","); }
else{
System.out.print( temp.elem );
System.out.print(",");}
temp = temp.next;
}
System.out.print(">");
}
}
}
继承人的问题:
假设附加 3 ->>> 我得到 <|3> 但如果我在 ->>>> 之后附加 5 我得到 <|5> 删除我的第一个项目。
请帮帮我:(