gpt4 book ai didi

java - 堆栈实现 java - LinkedList vs Vector

转载 作者:行者123 更新时间:2023-12-01 14:07:49 25 4
gpt4 key购买 nike

关闭。这个问题需要details or clarity .它目前不接受答案。












想改进这个问题?通过 editing this post 添加详细信息并澄清问题.

1年前关闭。




Improve this question




我想知道为什么 Stack 是使用 Vector 而不是 LinkedList 实现的。据我所知,LinkedList 为元素的删除和插入提供了更有效的结构。那么,为什么栈是使用vector而不是LinkedList来实现的。 Java 用 LinkedList 实现了 Queue 接口(interface),因为在堆栈和队列中,插入和删除是主要功能,为什么不是 Stack 的链表。

最佳答案

StackVector都是老类。
如果您阅读 Stack 的 Javadoc ,您会看到它建议使用 Deque反而:

A more complete and consistent set of LIFO stack operations is provided by the Deque interface and its implementations, which should be used in preference to this class.


LinkedList确实实现了 Deque界面。

关于java - 堆栈实现 java - LinkedList vs Vector,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63097585/

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