ArrayList和LinkedList的区别
Posted yamiya
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ArrayList和LinkedList的区别相关的知识,希望对你有一定的参考价值。
1、ArrayList基于数组,LinkedList基于链表
2、ArrayList的get操作优于LinkedList的get,因为LinkedList要移动指针
3、add和remove,LinkedList占优势,因为LinkedList只需要接链和断链,而ArrayList需要整体移动数据。
以上是关于ArrayList和LinkedList的区别的主要内容,如果未能解决你的问题,请参考以下文章