CSDN博客地址
摘要: LinkedList 是一个继承于AbstractSequentialList的双向链表。它也可以被当作堆栈、队列或双端队列进行操作。 LinkedList 实现 List 接口,能进行队列操作。 LinkedList 实现 Deque 接口,即能将LinkedList当作双端队列使用。 Array 阅读全文
posted @ 2018-02-09 14:35 Yi_warmth 阅读(2473) 评论(0) 推荐(0)
CSDN博客地址