我正在尝试打印出链表中的所有元素。但是,我无法打印出完整的项目清单。
public void display()
{
int count =0;
if (head == null)
{
System.out.println("List is empty");
}
else {
ListNode temp = head;
while (temp.getNext() != null)
{
System.out.println(temp.getElement() +" ");
count ++;
temp = temp.getNext();
}
System.out.println("Total element: "+count);
}
}
// 使用的方法
public ListNode getNext()
{
return this.next;
}
/*get the element of Listnode*/
public int getElement()
{
return this.element;
}
请告知哪一部分是错误的。