gpt4 book ai didi

java - 为什么 LinkedHashSet 的迭代时间不依赖于其容量?

转载 作者:行者123 更新时间:2023-12-01 17:26:38 25 4
gpt4 key购买 nike

来自Java Docs of LinkedHashSet(LHS)类:

Iteration over a LinkedHashSet requires time proportional to the size of the set, regardless of its capacity. Iteration over a HashSet is likely to be more expensive, requiring time proportional to its capacity.

我的问题是为什么 LHS 上的迭代时间对集合的容量没有影响?

最佳答案

因为 LinkedHashSet 内部包含 LinkedList 和 Set。迭代时,您迭代(我相信是双)LinkedList,而不是 HashSet。

关于java - 为什么 LinkedHashSet 的迭代时间不依赖于其容量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14443192/

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