双重循环链表的大小

时间:2015-06-21 23:08:27

标签: java

我想知道如何在Java中找到双循环链表的最后一个节点,因为我想在循环链表中找到节点的大小或数量。

1 个答案:

答案 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;
}