gpt4 book ai didi

java - Java中有双向链表实现吗?

转载 作者:搜寻专家 更新时间:2023-10-30 21:04:14 26 4
gpt4 key购买 nike

我看到 LinkedList 的 JDK 实现内部包含 Node 内部类,其中包含 next 和 previous 的地址。

所以我怀疑java中的LinkedList不是双向链表。如果不是,为什么?

以及如何实现我们自己的双向链表?

最佳答案

是的,LinkedList是一个双向链表,正如 Javadoc 提到的那样:

Doubly-linked list implementation of the List and Deque interfaces. Implements all optional list operations, and permits all elements (including null).

All of the operations perform as could be expected for a doubly-linked list. Operations that index into the list will traverse the list from the beginning or the end, whichever is closer to the specified index.

关于java - Java中有双向链表实现吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31365998/

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