第十四章 集合(List)

news/2024/11/30 20:34:08/

一、集合框架体系

集合:
(1)可以动态保存任意多个对象。
(2)提供了一系列方便的操作对象的方法:add、remove、set、get等。
在这里插入图片描述
在这里插入图片描述

二、Collection

1. Collection 接口常用方法

(1)add:添加单个元素
(2)remove:删除指定元素
(3)contains:查找元素是否存在
(4)size:获取元素个数
(5)isEmpty:判断是否为空
(6)clear:清空
(7)addAll:添加多个元素
(8)containsAIl:查找多个元素是否都存在
(9)removeAll:删除多个元素

2. Collection 接口遍历元素方式1,使用 Iterator(迭代器)

(1)Iterator 对象称为迭代器,主要用于遍历 Collection集合 中的元素。
(2)所有实现了 Collection接口 的集合类都有一个 iterator() 方法,用以返口一个实现了Iterator接口 的对象,即可以返回一个迭代器。
(3)Iterator 仅用于遍历集合,lterator 本身并不存放对象。

public class Test {public static void main(String[] args) {ArrayList<Integer> list = new ArrayList<>();list.add(1);list.add(2);list.add(3);// list.iterator() 重置迭代器,可重复Iterator<Integer> iterator = list.iterator();while (iterator.hasNext()) {Integer next = iterator.next();System.out.println(next);}}
}

3. Collection 接口遍历元素方式2,for循环增强

增强 for 循环,可以代替 iterator 迭代器,特点:增强 for 本质就是迭代器。只能用于遍历集合或数组。

public class Test {public static void main(String[] args) {ArrayList<Integer> list = new ArrayList<>();list.add(1);list.add(2);list.add(3);for (Integer e : list) {System.out.println(e);}}
}

三、List

1. List 接口基本介绍

(1)List 接口是 Collection 接口的子接口。
(2)List 集合类中元素 有序(即添加顺序和取出顺序一致)、且 可重复
(3)List 集合中的每个元素都有其对应的顺序索引,即 支持索引
(4)List 容器中的元素都对应一个整数型的序号记载其在容器中的位置,可以根据序号存取容器中的元素。

2. List 集合里添加了一些根据 索引 来操作集合元素的方法

(1)void add (int index, Object ele):在 index 位置插入 ele 元素。
(2)boolean addAll (int index, Collection eles):从 index 位置开始将 eles 中的所有元素添加进来。
(3)Object get (int index):获取指定 index 位置的元素。
(4)int indexOf (Object obj):返回 obj 在集合中首次出现的位置。
(5)int lastlndexOf (Object obj):返回 obj 在当前集合中末次出现的位置。
(6)Object remove (int index):移除指定 index 位置的元素,并返回此元素。
(7)Object set (int index, Object ele):设置指定 index 位置的元素为 ele,相当于是替换。
(8)List subList (int fromlndex,int tolndex):返回从 fromlndex 到(tolndex -1)位置的子集合。

public class Test {public static void main(String[] args) {List<String> list = new ArrayList<>();list.add("乔峰");list.add("段誉");list.add(1, "虚竹");list.add("Tom");System.out.println(list); // [乔峰, 虚竹, 段誉, Tom]List<String> list2 = new ArrayList<>();list2.add("Jack");list2.add("Tom");list.addAll(1, list2);System.out.println(list); // [乔峰, Jack, Tom, 虚竹, 段誉, Tom]System.out.println(list.get(1)); // JackSystem.out.println(list.indexOf("Tom")); // 2System.out.println(list.lastIndexOf("Tom")); // 5list.remove(5);System.out.println(list); // [乔峰, Jack, Tom, 虚竹, 段誉]list.set(2, "Mike");System.out.println(list); // [乔峰, Jack, Mike, 虚竹, 段誉]System.out.println(list.subList(0, 2)); // [乔峰, Jack]}
}

四、ArrayList(P509)

1. ArrayList的注意事项

(1)ArrayList 可以加入 null,并且多个。
(2)ArrayList 是由数组来实现数据存储的。
(3)ArrayList 基本等同于 Vector。ArrayList 是线程不安全(执行效率高),在多线程情况下,不建议使用 ArrayList。

2. ArrayList的底层操作机制 源码 分析(P510)

(1)ArrayList 中维护了一个 Object 类型的数组,transient Object[] elementData(transient 表示该属性不会被序列化)。
(2)当创建 ArrayList 对象时,如果使用的是无参构造器,则初始 elementData 容量为 0。第一次添加,则扩容 elementData 为 10。如果需要再次扩容的话,则扩容 elementData 为1.5 倍。
(3)如果使用的是指定大小的构造器,则初始 elementData 容量为指定大小,如果需要扩容,则直接扩容 elementData 为1.5倍。

public class ArrayList_<E> {transient Object[] elementData;private int size;protected transient int modCount = 0;private static final int DEFAULT_CAPACITY = 10;private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {};// 无参构造public ArrayList_() {// 创建一个空的数组this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA;}public ArrayList_(int initialCapacity) {if (initialCapacity > 0) {this.elementData = new Object[initialCapacity];} }public boolean add(E e) {ensureCapacityInternal(size + 1);  // Increments modCount!!// 在 elementData[size] 赋值,并且size++elementData[size++] = e;return true;}private void ensureCapacityInternal(int minCapacity) {ensureExplicitCapacity(calculateCapacity(elementData, minCapacity));}private void ensureExplicitCapacity(int minCapacity) {// 操作次数modCount++;// overflow-conscious code// 判断是否扩容,如果elementData数组大小不够就扩容if (minCapacity - elementData.length > 0){grow(minCapacity);}}private static int calculateCapacity(Object[] elementData, int minCapacity) {if (elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA) {return Math.max(DEFAULT_CAPACITY, minCapacity);}return minCapacity;}private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;// 扩容方法private void grow(int minCapacity) {// overflow-conscious codeint oldCapacity = elementData.length;// 扩容为1.5倍int newCapacity = oldCapacity + (oldCapacity >> 1);if (newCapacity - minCapacity < 0){newCapacity = minCapacity;}// 防止超过最大值2147483639if (newCapacity - MAX_ARRAY_SIZE > 0){newCapacity = hugeCapacity(minCapacity);}// minCapacity is usually close to size, so this is a win:// Arrays.copyOf 可以保留原先的数据,并扩容elementData = Arrays.copyOf(elementData, newCapacity);}private static int hugeCapacity(int minCapacity) {if (minCapacity < 0){// overflowthrow new OutOfMemoryError();}return (minCapacity > MAX_ARRAY_SIZE) ?Integer.MAX_VALUE :MAX_ARRAY_SIZE;}
}

五、Vector(P513)

1. Vector 的基本介绍

(1)Vector 类的定义说明

public class Vector<E>extends AbstractList<E>implements List<E>, RandomAccess, Cloneable, java.io.Serializable

(2)Vector 底层也是一个对象数组 protected Object[] elementData;
(3)Vector 是线程同步的,即线程安全,Vector 类的操作方法带有 synchronized。
(4)在开发中,需要线程同步安全时,考虑使用 Vector。
在这里插入图片描述

2. Vector 的底层操作机制源码分析

Vector 扩容源码类似于 ArrayList

public class Vector_<E> {protected Object[] elementData;protected int capacityIncrement;protected transient int modCount = 0;protected int elementCount;public Vector_() {this(10);}public Vector_(int initialCapacity) {this(initialCapacity, 0);}public Vector_(int initialCapacity, int capacityIncrement) {super();if (initialCapacity < 0){throw new IllegalArgumentException("Illegal Capacity: "+initialCapacity);}// 初始化数组this.elementData = new Object[initialCapacity];this.capacityIncrement = capacityIncrement;}public synchronized boolean add(E e) {modCount++;ensureCapacityHelper(elementCount + 1);elementData[elementCount++] = e;return true;}private void ensureCapacityHelper(int minCapacity) {// overflow-conscious code// 判断是否扩容if (minCapacity - elementData.length > 0){grow(minCapacity);}}private void grow(int minCapacity) {// overflow-conscious codeint oldCapacity = elementData.length;// newCapacity = oldCapacity + oldCapacityint newCapacity = oldCapacity + ((capacityIncrement > 0) ?capacityIncrement : oldCapacity);if (newCapacity - minCapacity < 0){newCapacity = minCapacity;}elementData = Arrays.copyOf(elementData, newCapacity);}
}

六、LinkedList(P515)

1. LinkedList 说明

(1)LinkedList 底层实现了双向链表和双端队列特点。
(2)可以添加任意元素(元素可以重复),包括 null。
(3)线程不安全,没有实现同步。

2. LinkedList 的底层操作机制

(1)LinkedList 底层维护了一个双向链表。
(2)LinkedList 中维护了两个属性 first 和 last 分别指向首节点和尾节点。
(3)每个节点(Node对象),里面又维护了 prev 、next 、item 三个属性,其中通过 prev 指向前一个,通过 next 指向后一个节点。最终实现双向链表。
(4)所以 LinkedList 的元素的添加和删除,不是通过数组完成的,相对来说 效率较高
在这里插入图片描述

3. LinkedList 源码 解读(P516)

public class LinkedList_<E> {transient int size = 0;protected transient int modCount = 0;transient Node<E> first;transient Node<E> last;private static class Node<E> {E item; // 存放数据Node<E> next;Node<E> prev;Node(Node<E> prev, E element, Node<E> next) {this.item = element;this.next = next;this.prev = prev;}}public boolean add(E e) {linkLast(e);return true;}void linkLast(E e) {final Node<E> l = last;final Node<E> newNode = new Node<>(l, e, null);last = newNode;if (l == null) {first = newNode;} else {l.next = newNode;}size++;modCount++;}public E remove() {return removeFirst();}public E removeFirst() {final Node<E> f = first;if (f == null) {throw new NoSuchElementException();}return unlinkFirst(f);}private E unlinkFirst(Node<E> f) {// assert f == first && f != null;final E element = f.item;final Node<E> next = f.next;f.item = null;f.next = null; // help GCfirst = next;if (next == null) {last = null;} else {next.prev = null;}size--;modCount++;return element;}
}

七、ArrayList和LinkedList比较(P517)

在这里插入图片描述
(1)如果我们改查的操作多,选择 ArrayList。
(2)如果我们增删的操作多,选择 LinkedList。
(3)一般来说,在程序中,80%-90%都是查询,因此大部分情况下会选择 ArrayList。


http://www.ppmy.cn/news/1282705.html

相关文章

【已解决】c++ 如何给qt的lineEdit传入中文且不乱码

本博文源于笔者正在写的一个模块&#xff0c;需要给qt的linEdit传入中文&#xff0c;并且不会乱码&#xff0c;原本想着在初始化&#xff0c;也就是构造函数里写入ui.lineEdit->setText(“你好”);结果发现&#xff0c;显示出来是乱码&#xff0c;那怎么办啊。下面就以一个小…

k8s集群通过helm部署skywalking

1、安装helm 下载脚本安装 ~# curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 ~# chmod 700 get_helm.sh ~# ./get_helm.sh或者下载包进行安装 ~# wget https://get.helm.sh/helm-canary-linux-amd64.tar.gz ~# mv helm …

5.Redis管道(pipeline)

5.Redis管道&#xff08;pipeline&#xff09; 如何优化频繁命令往返造成的性能瓶颈&#xff1f; 引出管道这个概念 管道&#xff08;pipeline&#xff09;可以一次性发送多条命令给服务端&#xff0c;服务端依次处理完毕后&#xff0c;通过一条响应一次性结果返回&#xff0…

Java学习:Comparator和Comparable

一.Comparator的使用 1.Arrays.sort 给基本类型的数组进行排序的方法&#xff0c;默认是实现升序&#xff0c;也可以通过方法写匿名类自定义实现升降序排序。 代码&#xff1a; Arrays.sort(arr,new Comparator<Integer>(){Overridepublic int compare(Integer o1, In…

操作系统面试题目

1、进程和线程的区别&#xff1a; 调度&#xff08;进程是资源的最小单位&#xff0c;线程是程序执行的基本单位&#xff09;&#xff1b;切换&#xff08;线程切换快&#xff09;&#xff1b;拥有资源&#xff08;线程不拥有资源&#xff09;&#xff1b;系统开销2、并发和并行…

记录为 uni-app的扩展组件(uni-ui)和 微信小程序标签 添加行内样式的正确做法

如题&#xff0c;首先&#xff0c;正确为微信小程序标签添加行内样式&#xff0c;其做法是&#xff1a;&#xff08;以view为例&#xff09; <view style"width: 400rpx; height: 400rpx; background-color: green;">goods_list</view>也就是说&#xf…

顺序表的实现(头插、尾插、头删、尾删、查找、删除、插入)

目录 一. 数据结构相关概念​ 二、线性表 三、顺序表概念及结构 3.1顺序表一般可以分为&#xff1a; 3.2 接口实现&#xff1a; 四、基本操作实现 4.1顺序表初始化 4.2检查空间&#xff0c;如果满了&#xff0c;进行增容​编辑 4.3顺序表打印 4.4顺序表销毁 4.5顺…

智能三维数据虚拟现实电子沙盘

一、概述 易图讯科技&#xff08;www.3dgis.top&#xff09;以大数据、云计算、虚拟现实、物联网、AI等先进技术为支撑&#xff0c;支持高清卫星影像、DEM高程数据、矢量数据、无人机倾斜摄像、BIM模型、点云、城市白模、等高线、标高点等数据融合和切换&#xff0c;智能三维数…