我想知道如何在Java中找到双循环链表的最后一个节点,因为我想在循环链表中找到节点的大小或数量。
答案 0 :(得分:1)
public int getSize() {
int count = 0;
if (head == null)
return count;
else {
Node temp = head;
do {
temp = temp.getNextNode();
count++;
} while (temp != head);
}
return count;
}