Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
java.util中的LinkedList是双向链表吗?我是否需要实现我自己的单链表,或者在 java.util 中有什么类?
只是无法通过网络找到直接的答案。
从LinkedList API 文档:
所有操作都按照双向链表的预期执行。
除非内存是个问题,否则双链表足以满足单链表所能满足的所有需求。