摘要: 1、LinkedList与ArrayList的区别 1)、LinkedList是基于链表的数据结构,ArrayList是实现了基于动态数组的数据结构; 2)、对于查询(get),ArrayList比LinkedList效率高,因为LinkedList要移动指针 对于新增(insert)和删除(rem 阅读全文
posted @ 2018-10-17 17:08 TearsSmile 阅读(227) 评论(0) 推荐(0) 编辑