第四章 四种List实现类的对比总结 1、ArrayList 非线程安全 基于对象数组 get(int index)不需要遍历数组,速度快; iterator()方法中调用了get(int index),所以速度也快 set(int index, E e)不需要遍历数组,速度快 add方法需要考虑扩容与... 数据结构与算法 2023-08-28 38 点赞 0 评论 57 浏览