gpt4 book ai didi

java - 双循环链表的大小

转载 作者:行者123 更新时间:2023-12-01 11:23:59 24 4
gpt4 key购买 nike

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

最佳答案

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

关于java - 双循环链表的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30970211/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com