LinkedList 集合类

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LinkedList 集合类相关的知识,希望对你有一定的参考价值。

LinkedList类和ArrayList类的区别:

一般大家都知道ArrayList和LinkedList的大致区别: 
     1.ArrayList是实现了基于动态数组的数据结构,LinkedList基于链表的数据结构。 
     2.对于随机访问get和set,ArrayList觉得优于LinkedList,因为LinkedList要移动指针。 
     3.对于新增和删除操作add和remove,LinedList比较占优势,因为ArrayList要移动数据。 

其次,LinkedList操作首尾元素比较方便。

以上是关于LinkedList 集合类的主要内容,如果未能解决你的问题,请参考以下文章

LinkedList集合

Java 集合系列05之 LinkedList详细介绍(源码解析)和使用示例

java-集合框架-LinkedList运用

集合系列—HashMap源码分析

java LinkedLis t的26种使用方法

LinkedList源码分析