数据结构----链表介绍、模拟实现链表、链表的使用

文章目录

  • 1. ArrayList存在的问题
  • 2. 链表定义
    • 2.1 链表的概念及结构
    • 2.2 链表的组合类型
  • 3. 链表的实现
    • 3.1 单向、不带头、非循环链表的实现
    • 3.2 双向、不带头节点、非循环链表的实现
  • 4.LinkedList的使用
    • 4.1 什么是LinkedList
    • 4.2 LinkedList的使用
      • 4.2.1. LinkedList的构造
      • 4.2.2. LinkedList的其他常用方法介绍
      • 4.2.3. LinkedList的遍历
  • 5. ArrayList和LinkedList的区别

1. ArrayList存在的问题

  1. ArrayList底层使用连续的空间,任意位置插入或删除元素时,需要将该位置后序元素整体往前或者往后搬移,故时间复杂度为O(N)
  2. 增容需要申请新空间,拷贝数据,释放旧空间。会有不小的消耗。
  3. 增容一般是呈2倍的增长,势必会有一定的空间浪费。例如当前容量为100,满了以后增容到200,我们再继续插入了5个数据,后面没有数据插入了,那么就浪费了95个数据空间。

由于其底层是一段连续空间,当在ArrayList任意位置插入或者删除元素时,就需要将后序元素整体往前或者往后搬移,时间复杂度为O(n),效率比较低,因此ArrayList不适合做任意位置插入和删除比较多的场景。因此:java集合中又引入了LinkedList,即链表结构。

2. 链表定义

2.1 链表的概念及结构

链表是一种常见的数据结构,它由一系列节点组成,每个节点包含两部分:数据元素 (value) 和指向下一个节点的指针 ( next 域 )。通过这些节点的连接,可以形成一个链式结构。

【单个节点】:
在这里插入图片描述
节点(Node):链表的基本单元,包含数据域和next指针域。数据域可以是任意类型的数据,指针指向下一个节点。每个节点都是一个对象。

【节点组成的链式结构】:
在这里插入图片描述
在这里插入图片描述

结论: 链表是一种物理存储结构上非连续存储结构,数据元素的逻辑顺序是通过链表中的引用链接次序实现的 。

2.2 链表的组合类型

1、单向或者双向

根据节点的指针数量,链表可以分为单向链表和双向链表。
单向链表每个节点只有一个指针,指向下一个节点;
在这里插入图片描述

双向链表每个节点有两个指针,分别指向前一个节点和后一个节点。
在这里插入图片描述

2、带头或者不带头

带头节点的链表在第一个节点之前有一个额外的头节点,用于标识链表的起始位置。(head的value是无意义的,如果想从最开头插入数据时,head是不可变的,从head后面插入)
在这里插入图片描述

不带头节点的链表则直接以第一个节点作为链表的起始位置。(head是第一个节点,有value的,如果想从最开头插入数据时,head是可变的,变成新插入的节点)
在这里插入图片描述

3、是否循环:

在这里插入图片描述
循环链表是在链表的尾部节点和头部节点之间形成一个循环连接,使得链表的最后一个节点指向头部节点。
在这里插入图片描述
结合上述结构可以组合出8中链表种类:
单向、带头节点、非循环链表
单向、带头节点、循环链表

单向、不带头节点、非循环链表(重点)
单向、不带头节点、循环链表

双向、不带头节点、非循环链表(重点)
双向、不带头节点、循环链表

双向、带头节点、非循环链表
双向、带头节点、循环链表

3. 链表的实现

3.1 单向、不带头、非循环链表的实现

  1. 节点的定义
	//静态内部类定义节点public static class ListNode {public int data;//数据域public ListNode next;//指向下一个节点public ListNode(int data) {this.data = data;}}public ListNode head; // 表示当前链表的头节点 方便找到链表的第一个元素

在这里插入图片描述
2. 创建链表(穷举法)

public void createLinkedList() {ListNode node1 = new ListNode(12);ListNode node2 = new ListNode(23);ListNode node3 = new ListNode(34);ListNode node4 = new ListNode(45);ListNode node5 = new ListNode(56);//把链表的节点连起来node1.next = node2;node2.next = node3;node3.next = node4;node4.next = node5;//使用head节点来记录链表的入口this.head = node1;}

在这里插入图片描述
使用debug,发现所有节点链接起来了
在这里插入图片描述
之后,可以使用head节点,获取所有的节点

  1. 打印链表

(1) 怎么从一个节点走向下一个节点
移动head,走向下一个节点,使用head = head.next;就可以实现
在这里插入图片描述
(2)怎么判断所有节点都遍历完
当head指向null时,则所有节点遍历完毕
在这里插入图片描述

 public void display() {ListNode cur = this.head;//防止其他方法无法使用head,无法找到链表的第一个元素,使用临时变量curwhile (cur != null) {//当cur指向null时,则所有节点遍历完,循环结束System.out.print(cur.value + " ");cur = cur.next;//不断移动cur指向下一个节点}System.out.println();}
  1. 头插法添加数据

头插法插入数据分为三步:
(1)实例化一个节点
(2)改变插入结点的next指向原来链表的第一个节点
(3)改变head指向新节点
在这里插入图片描述

@Overridepublic void addFirst(int data) {ListNode listNode = new ListNode(data);if (this.head == null) {this.head = listNode;} else {listNode.next = this.head;this.head = listNode;}}
  1. 尾插法添加数据

尾插法添加数据分为二步:
(1)实例化一个节点
(2)找到最后一个节点
(3)将链表的原来的最后一个节点指向新的节点
在这里插入图片描述

public void addLast(int data) {ListNode listNode = new ListNode(data);if (this.head == null) {this.head = listNode;} else {ListNode cur = this.head;while (cur.next != null) {cur = cur.next;}cur.next = listNode;}}

【小总结】:

  • 如果想让cur指向最后一个节点的位置,使用cur.next == null
    在这里插入图片描述
  • 如果想把整个链表遍历完成,那么就是cur == null
    在这里插入图片描述

5.任意位置插入,第一个数据节点为0号下标

在链表随意位置插入数据分为四步:
(1)找到该节点要插入位置的前一个节点cur(前一个节点的原因,可以由前一个节点得到后一个节点,无法无法从后一个节点得到前一个结点),让cur走index-1步。
(2)实例化一个节点
(3)让新插入的节点的next指向要插入位置的节点,listNode.next = cur.next;
(4)让要插入位置的前一个节点cur的next指向新节点,cur.next = listNode;
注意:(3)和(4)的顺序要正确,再插入一个节点时,一定要先绑定后面这个节点
在这里插入图片描述

 public void addIndex(int index, int data) {if(index<0||index>size()){//要先判断index的合法性throw new  IndexOutOfBounds("链表下标越界");//自定义异常链表下标越界}if(index == 0){//在第一个位置插入,使用头插法的方法addFirst(data);}else if(index == size()){//在最后一个位置插入,使用尾插法的方法addLast(data);}else {//在中间位置插入ListNode listNode = new ListNode(data);//要插入的节点ListNode cur = searchPrev(index);//要插入位置的前一个节点listNode.next = cur.next;cur.next = listNode;}}private ListNode searchPrev(int index){ListNode cur = this.head;int count = 0;while (count != index -1){cur = cur.next;count++;}return cur;}
  1. 删除第一次出现关键字为key的节点
    删除链表中的节点分为三步:
    (1)找到要删除节点的前一个节点cur
    (2) 标记要删除的要素(也可以不要这一步)ListNode del = cur.next;
    (3)让cur的next指向要删除的节点的下一个节点(要删除的节点没有被引用,JVM会自动回收)
    在这里插入图片描述
    在第一步中找到要删除节点的前一个节点cur,需要找到cur.next.value 和 key的值相等的节点,如果是引用类型时,现需要使用equals()方法,而不是==
    在这里插入图片描述
    还有一种情况,当要删除的数据是第一个节点时,只需要让head指向第二个节点即可做到删除第一个节点
    在这里插入图片描述
 	public void remove(int key) {//当要删除的数据是第一个节点if (this.head.value == key) {this.head = this.head.next;} else {//找到前驱ListNode cur = getPrev(key);//判断前驱是否存在if (cur == null) {System.out.println("要删除的数字不存在");} else {//删除节点ListNode del = cur.next;cur.next = del.next;}}}private ListNode getPrev(int key) {ListNode cur = this.head;while (cur != null) {if (cur.next.value == key) {return cur;}cur = cur.next;}return null;}
  1. 删除所有值为key的节点

删除所有值为key的节点分为三步:
(1)遍历链表,找到要删除节点cur
(2) 让cur的上一个节点指向cur的下一个节点,删除cur
(3)继续遍历链表,找到所有与key相等的节点,重复(1)(2)步骤,直至遍历完链表

在这里插入图片描述

还有要考虑一种情况,当要删除的数据是第一个节点时,只需要让head指向第二个节点即可做到删除第一个节点
在这里插入图片描述

public void removeAllKey(int key) {if(this.head == null){return;}ListNode prev = this.head;ListNode cur = this.head.next;while (cur != null) {if (cur.value == key) {prev.next = cur.next;cur = cur.next;} else {prev = cur;cur = cur.next;}}if (this.head.value == key) {this.head = this.head.next;return;}}
  1. 清空链表

清空链表分为两种方式:
方式一:直接将head置为null(不推荐)
方式二:遍历节点,将每个节点的数值域和next域置为空
在这里插入图片描述

public void clear() {ListNode cur = this.head;while (cur != null) {ListNode curNext = cur.next;
//            cur.value = null;//  引用类型value要置为nullcur.next = null;cur = curNext;}this.head = null;}

完整代码:
ILst接口:

public interface IList {//头插法public void addFirst(int data);//尾插法public void addLast(int data);//任意位置插入,第一个数据节点为0号下标public void addIndex(int index, int data);//查找是否包含关键字key是否在单链表当中public boolean contains(int key);//删除第一次出现关键字为key的节点public void remove(int key);//删除所有值为key的节点public void removeAllKey(int key);//得到单链表的长度public int size();public void clear();public void display();
}

自定义异常IndexOutOfBounds类

public class IndexOutOfBounds extends RuntimeException{public IndexOutOfBounds(String message) {super(message);}
}

MyLinkedList类:

public class MyLinkedList implements IList {//静态内部类public static class ListNode {public int value;public ListNode next;public ListNode(int value) {this.value = value;}}public ListNode head; //方便找到链表的第一个元素public void createLinkedList() {ListNode node1 = new ListNode(12);ListNode node2 = new ListNode(23);ListNode node3 = new ListNode(34);ListNode node4 = new ListNode(45);ListNode node5 = new ListNode(56);//把表节点连起来node1.next = node2;node2.next = node3;node3.next = node4;node4.next = node5;//使用head节点来记录链表的入口this.head = node1;}//头插法@Overridepublic void addFirst(int data) {ListNode listNode = new ListNode(data);if (this.head == null) {this.head = listNode;} else {listNode.next = this.head;this.head = listNode;}}//尾插法@Overridepublic void addLast(int data) {ListNode listNode = new ListNode(data);if (this.head == null) {this.head = listNode;} else {ListNode cur = this.head;while (cur.next != null) {cur = cur.next;}cur.next = listNode;}}@Overridepublic void addIndex(int index, int data) {if (index < 0 || index > size()) {//要先判断index的合法性throw new IndexOutOfBounds("链表下标越界");//自定义异常链表下标越界}if (index == 0) {//在第一个位置插入,使用头插法的方法addFirst(data);} else if (index == size()) {//在最后一个位置插入,使用尾插法的方法addLast(data);} else {//在中间位置插入ListNode listNode = new ListNode(data);//要插入的节点ListNode cur = searchPrev(index);//要插入位置的前一个节点listNode.next = cur.next;cur.next = listNode;}}private ListNode searchPrev(int index) {ListNode cur = this.head;int count = 0;while (count != index - 1) {cur = cur.next;count++;}return cur;}@Overridepublic boolean contains(int key) {ListNode cur = this.head;while (cur != null) {if (cur.value == key) {return true;}cur = cur.next;}return false;}@Overridepublic void remove(int key) {if (this.head.value == key) {this.head = this.head.next;} else {ListNode cur = getPrev(key);if (cur == null) {System.out.println("要删除的数字不存在");} else {ListNode del = cur.next;cur.next = del.next;}}}private ListNode getPrev(int key) {ListNode cur = this.head;while (cur != null) {if (cur.next.value == key) {return cur;}cur = cur.next;}return null;}@Overridepublic void removeAllKey(int key) {if (this.head == null) {return;}ListNode prev = this.head;ListNode cur = this.head.next;while (cur != null) {if (cur.value == key) {prev.next = cur.next;cur = cur.next;} else {prev = cur;cur = cur.next;}}if (this.head.value == key) {this.head = this.head.next;return;}}@Overridepublic int size() {int count = 0;ListNode cur = this.head;while (cur != null) {cur = cur.next;count++;}return count;}@Overridepublic void clear() {ListNode cur = this.head;while (cur != null) {ListNode curNext = cur.next;
//            cur.value = null;cur.next = null;cur = curNext;}this.head = null;}@Overridepublic void display() {ListNode cur = this.head;while (cur != null) {System.out.print(cur.value + " ");cur = cur.next;}System.out.println();}
}

3.2 双向、不带头节点、非循环链表的实现

  1. 结点的定义
    static class ListNode {public int val;//数值域public ListNode next;//指针域,指向下一个节点public ListNode prev;//指针域,指向前一个节点public ListNode(int val) {this.val = val;}}

在这里插入图片描述
2. 头插法
第一步:让新插入的next 指向head节点
第二步:让head节点的prev指向新插入的节点
第三步:让head指向新插入的节点
在这里插入图片描述

 public void addFirst(int data) {ListNode node = new ListNode(data);if(head == null){head = node;last = node;}else {node.next = head;head.prev = node;head = node;}}
  1. 尾插法
    第一步:让last节点的next指向新插入的节点
    第二步:让新插入的prev指向last节点
    第三步:让last指向新插入的节点
    在这里插入图片描述
 public void addLast(int data) {ListNode node = new ListNode(data);if (head == null) {head = node;last = node;} else {last.next = node;node.prev = last;last = node;}}
  1. 在指定位置插入元素
    第一步:判断要插入的位置是否合法(0<=index<=链表的长度)
    第二步:判断要插入的节点是否在0位置,如果在0位置,那么就使用头插法
    第三步:判断要插入的节点是否在最后一个位置,如果在最后一个位置,那么就使用尾插法
    第四步:如果要在中间插入,需要插入位置前一个节点的next域指向新节点,新节点的next域指向插入位置的原来的节点,新节点的prev域指向需要插入位置前一个节点,需要插入位置的原来的节点的prev域指向新节点,改变四个指针域的指向便可以将新节点插入需要插入的位置。
    在这里插入图片描述
	public void addIndex(int index, int data) {int len = size();//index小于0,或者大于链表的长度,插入位置不合法if (index < 0 || index > len) {throw new IndexOutOfBounds("要插入的位置小于0或者超过链表的长度,该位置不合法");}//如果在第一个节点插入,使用头插法if (index == 0) {addFirst(data);return;}//如果在最后一个节点插入,使用尾插法if (index == len) {addLast(data);return;}//中间位置//获取要插入的位置的节点ListNode cur = getNode(index);//新插入的节点ListNode node = new ListNode(data);//在中间位置插入节点元素ListNode prev = cur.prev;prev.next = node;node.next = cur;node.prev = prev;cur.prev = node;}public ListNode getNode(int index) {ListNode cur = this.head;while (index != 0) {index--;cur = cur.next;}return cur;}

5.删除指定节点
总共分为三种情况,分别如下:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
特殊情况:还需要考虑一种特殊情况,当量表中只存在一个节点,并且该结点时需要删除的节点的情况
在这里插入图片描述

    public void  remove(int key) {ListNode cur = this.head;while (cur != null) {//判断是否找到目标节点if(cur.val == key) {//要删除的节点是头节点的情况if(cur == head) {head = head.next;//链表中只有头节点一个节点,删除之后链表为空链表,last需要置为nullif(head == null) {last = null;}else {//链表中不止一个节点,需要将头节点的prev置为nullhead.prev = null;}return;}//要删除的节点是尾节点的情况if(cur == last) {cur.prev.next = cur.next;last = last.prev;return;}//要删除的节点是中间的节点的情况cur.prev.next = cur.next;cur.next.prev = cur.prev;return;}else {cur = cur.next;}}System.out.println("该节点不存在");}
  1. 链表置空
    方式一:
		head=null; last=null;

方式二:
1.使用cur局部变量,遍历链表,将每一个节点都置为null
2.将头节点和尾节点置为空

在这里插入图片描述

public void clear() {ListNode cur = this.head;while (cur != null) {ListNode curNext = cur.next;//如果是引用类型,还需要将数值域置为空
//            cur.val = null;cur.prev = null;cur.next = null;cur = curNext;}head = null;last = null;}

【完整代码】:
双向、不带头节点、非循环链表的实现:LinkedList .class

public class LinkedList2 implements IList {static class ListNode {public int val;//数值域public ListNode next;//指针域,指向下一个节点public ListNode prev;//指针域,指向前一个节点public ListNode(int val) {this.val = val;}}public ListNode head;public ListNode last;@Overridepublic void addFirst(int data) {ListNode node = new ListNode(data);if (head == null) {head = node;last = node;} else {node.next = head;head.prev = node;head = node;}}@Overridepublic void addLast(int data) {ListNode node = new ListNode(data);if (head == null) {head = node;last = node;} else {last.next = node;node.prev = last;last = node;}}@Overridepublic void addIndex(int index, int data) {int len = size();//index小于0,或者大于链表的长度,插入位置不合法if (index < 0 || index > len) {throw new IndexOutOfBounds("要插入的位置小于0或者超过链表的长度,该位置不合法");}//如果在第一个节点插入,使用头插法if (index == 0) {addFirst(data);return;}//如果在最后一个节点插入,使用尾插法if (index == len) {addLast(data);return;}//中间位置//获取要插入的位置的节点ListNode cur = getNode(index);//新插入的节点ListNode node = new ListNode(data);//在中间位置插入节点元素ListNode curPrev = cur.prev;curPrev.next = node;node.next = cur;node.prev = curPrev;cur.prev = node;}public ListNode getNode(int index) {ListNode cur = this.head;while (index != 0) {index--;cur = cur.next;}return cur;}@Overridepublic boolean contains(int key) {ListNode cur = head;while (cur != null) {if (cur.val == key) {return true;}cur = cur.next;}return false;}@Overridepublic void remove(int key) {ListNode cur = this.head;while (cur != null) {//判断是否找到目标节点if (cur.val == key) {//要删除的节点是头节点的情况if (cur == head) {head = head.next;//链表中只有头节点一个节点,删除之后链表为空链表,last需要置为nullif (head == null) {last = null;} else {//链表中不止一个节点,需要将头节点的prev置为nullhead.prev = null;}} else if (cur == last) {//要删除的节点是尾节点的情况cur.prev.next = cur.next;last = last.prev;} else {//要删除的节点是中间的节点的情况cur.prev.next = cur.next;cur.next.prev = cur.prev;}return;} else {cur = cur.next;}}System.out.println("该节点不存在");}@Overridepublic void removeAllKey(int key) {ListNode cur = this.head;while (cur != null) {//判断是否找到目标节点if (cur.val == key) {//要删除的节点是头节点的情况if (cur == head) {head = head.next;//链表中只有头节点一个节点,删除之后链表为空链表,last需要置为nullif (head == null) {last = null;} else {//链表中不止一个节点,需要将头节点的prev置为nullhead.prev = null;}} else if (cur == last) {//要删除的节点是尾节点的情况cur.prev.next = cur.next;last = last.prev;} else {//要删除的节点是中间的节点的情况cur.prev.next = cur.next;cur.next.prev = cur.prev;}cur = cur.next;}System.out.println("该节点不存在");}}@Overridepublic int size() {int count = 0;ListNode cur = head;while (cur != null) {cur = cur.next;count++;}return count;}@Overridepublic void clear() {ListNode cur = this.head;while (cur != null) {ListNode curNext = cur.next;
//            cur.val = null;cur.prev = null;cur.next = null;cur = curNext;}head = null;last = null;}@Overridepublic void display() {ListNode cur = head;while (cur != null) {System.out.print(cur.val + " ");cur = cur.next;}System.out.println();}
}

4.LinkedList的使用

4.1 什么是LinkedList

LinkedList 的官方文档
LinkedList的底层是双向链表结构(链表后面介绍),由于链表没有将元素存储在连续的空间中,元素存储在单独的节点中,然后通过引用将节点连接起来了,因此在在任意位置插入或者删除元素时,不需要搬移元素,效率比较高。
在这里插入图片描述
在集合框架中,LinkedList也实现了List接口,具体如下:
在这里插入图片描述

【说明】

1. LinkedList实现了List接口
2. LinkedList的底层使用了双向链表
3. LinkedList没有实现RandomAccess接口,因此LinkedList不支持随机访问
4. LinkedList的任意位置插入和删除元素时效率比较高,时间复杂度为O(1)
5. LinkedList比较适合任意位置插入的场景

4.2 LinkedList的使用

4.2.1. LinkedList的构造

方法解释
LinkedList()无参构造
public LinkedList(Collection<? extends E> c)使用其他集合容器中元素构造List
public static void main(String[] args) {// 构造一个空的LinkedListList<Integer> list1 = new LinkedList<>();List<String> list2 = new java.util.ArrayList<>();list2.add("JavaSE");list2.add("JavaWeb");list2.add("JavaEE");// 使用ArrayList构造LinkedListList<String> list3 = new LinkedList<>(list2);
}

4.2.2. LinkedList的其他常用方法介绍

方法解释
boolean add(E e)尾插 e
void add(int index, E element)将 e 插入到 index 位置
boolean addAll(Collection<? extends E> c)尾插 c 中的元素
E remove(int index)删除 index 位置元素
boolean remove(Object o)删除遇到的第一个 o
E get(int index)获取下标 index 位置元素
E set(int index, E element)将下标 index 位置元素设置为 element
void clear()清空
boolean contains(Object o)判断 o 是否在线性表中
int indexOf(Object o)返回第一个 o 所在下标
int lastIndexOf(Object o)返回最后一个 o 的下标
List subList(int fromIndex, int toIndex)截取部分 list
public static void main(String[] args) {LinkedList<Integer> list = new LinkedList<>();list.add(1);   // add(elem): 表示尾插list.add(2);list.add(3);list.add(4);list.add(5);list.add(6);list.add(7);System.out.println(list.size());System.out.println(list);// 在起始位置插入0list.add(0, 0);  // add(index, elem): 在index位置插入元素elemSystem.out.println(list);list.remove();         // remove(): 删除第一个元素,内部调用的是removeFirst()list.removeFirst();    // removeFirst(): 删除第一个元素list.removeLast();    // removeLast(): 删除最后元素list.remove(1);  // remove(index): 删除index位置的元素System.out.println(list);// contains(elem): 检测elem元素是否存在,如果存在返回true,否则返回falseif(!list.contains(1)){list.add(0, 1);}list.add(1);System.out.println(list);System.out.println(list.indexOf(1));   // indexOf(elem): 从前往后找到第一个elem的位置System.out.println(list.lastIndexOf(1));  // lastIndexOf(elem): 从后往前找第一个1的位置int elem = list.get(0);    // get(index): 获取指定位置元素list.set(0, 100);          // set(index, elem): 将index位置的元素设置为elemSystem.out.println(list);// subList(from, to): 用list中[from, to)之间的元素构造一个新的LinkedList返回List<Integer> copy = list.subList(0, 3);   System.out.println(list);System.out.println(copy);list.clear();              // 将list中元素清空System.out.println(list.size());
}

4.2.3. LinkedList的遍历

public static void main(String[] args) {LinkedList<Integer> list = new LinkedList<>();list.add(1);   // add(elem): 表示尾插list.add(2);list.add(3);list.add(4);list.add(5);list.add(6);list.add(7);System.out.println(list.size());//方式一: foreach遍历for (int e:list) {System.out.print(e + " ");}System.out.println();//方式二:for循环for (int i = 0;i < list.size();i++) {System.out.print(list.get(i) + " ");}System.out.println();//方式三:迭代器// 使用迭代器遍历---正向遍历ListIterator<Integer> it = list.listIterator();while(it.hasNext()){System.out.print(it.next()+ " ");}System.out.println();// 使用反向迭代器---反向遍历ListIterator<Integer> rit = list.listIterator(list.size());while (rit.hasPrevious()){System.out.print(rit.previous() +" ");}System.out.println();
}

5. ArrayList和LinkedList的区别

不同点ArrayListLinkedList
存储空间上物理上一定连续逻辑上连续,但物理上不一定连续
随机访问支持O(1)不支持:O(N)
头插需要搬移元素,效率低O(N)只需修改引用的指向,时间复杂度为O(1)
插入空间不够时需要扩容没有容量的概念
应用场景元素高效存储+频繁访问任意位置插入和删除频繁
  • 如果是经常根据下标进行查找使用顺序表(ArrayList)
  • 如果是经常插入和删除操作的可以使用链表(LinkedList)

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/439959.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

静态代理IP该如何助力Facebook多账号注册运营?

在Facebook运营中&#xff0c;充分利用静态代理IP是多账号运营的关键一环。通过合理运用静态代理IP&#xff0c;不仅可以提高账号安全性&#xff0c;还能有效应对Facebook的算法和限制。以下是这些关键点&#xff0c;可以帮助你了解如何运用静态代理IP进行Facebook多账号运营&a…

C语言第十三弹---VS使用调试技巧

✨个人主页&#xff1a; 熬夜学编程的小林 &#x1f497;系列专栏&#xff1a; 【C语言详解】 【数据结构详解】 VS调试技巧 1、什么是bug 2、什么是调试&#xff08;debug&#xff09;&#xff1f; 3、Debug和Release​编辑​ 4、VS调试快捷键 4.1、环境准备 4.2、调试…

那些年与指针的情仇(二)---二级指针指针与数组的那点事函数指针

关注小庄 顿顿解馋(&#xff61;&#xff65;∀&#xff65;)&#xff89;&#xff9e; 欢迎回到我们的大型纪录片《那些年与指针的爱恨情仇》&#xff0c;在本篇博客中我们将继续了解指针的小秘密&#xff1a;二级指针&#xff0c;指针与数组的关系以及函数指针。请放心食用&a…

[React源码解析] Fiber (二)

在React15及以前, Reconciler采用递归的方式创建虚拟Dom, 但是递归过程不可以中断, 如果组件的层级比较深的话, 递归会占用线程很多时间, 那么会造成卡顿。 为了解决这个问题, React16将递归的无法中断的更新重构为异步的可中断更新, Fiber架构诞生。 文章目录 1.Fiber的结构2…

探讨UI自动化测试几步骤

随着软件开发的不断发展&#xff0c;UI自动化测试变得越来越重要&#xff0c;它能够提高测试效率、降低人为错误&#xff0c;并确保软件交付的质量。本文将介绍UI自动化测试的一般步骤和一些最佳实践&#xff0c;以帮助开发团队更好地实施自动化测试。 需求分析和选择测试工具&…

2024 IC FPGA 岗位 校招面试记录

引言 各位看到这篇文章时&#xff0c;24届校招招聘已经渐进尾声了。 在这里记录一下自己所有面试&#xff08;除了时间过短或者没啥干货的一些研究所外&#xff0c;如中电55所&#xff08;南京&#xff09;&#xff0c;航天804所&#xff08;上海&#xff09;&#xff09;的经…

Java链表(2)

&#x1f435;本篇文章将对双向链表进行讲解&#xff0c;模拟实现双向链表的常用方法 一、什么是双向链表 双向链表在指针域上相较于单链表&#xff0c;每一个节点多了一个指向前驱节点的引用prev以及多了指向最后一个节点的引用last&#xff1a; 二、双向链表的模拟实现 首先…

MongoDB(1)

文章目录 一、MongoDB简介二、MongoDB历史MongoDB支持语言MongoDB与关系型数据库术语对比数据类型 三、部署MongoDB下载二进制包安装步骤启动MongoDB客户端配置关闭MongoDB前台启动后台启动kill 命令关闭MongoDB函数关闭 一、MongoDB简介 Mongo并非芒果&#xff08;Mango&…

bert提取词向量比较两文本相似度

使用 bert-base-chinese 预训练模型做词嵌入&#xff08;文本转向量&#xff09; 模型下载&#xff1a;bert预训练模型下载-CSDN博客 参考文章&#xff1a;使用bert提取词向量 下面这段代码是一个传入句子转为词向量的函数 from transformers import BertTokenizer, BertMod…

防御保护----防火墙基本知识

一.防火墙的基本知识--------------------------------------------------------- 防火墙&#xff1a;可以想象为古代每个城市的城墙&#xff0c;用来防守敌军的攻击。墙&#xff0c;始于防&#xff0c;忠于守。从古至今&#xff0c;墙予人以安全之意。 防火墙的主要职责在于&…

【第七在线】数字化转型:智能商品计划管理的核心要素

随着科技的快速发展&#xff0c;数字化转型已经成为企业适应市场变化、提高运营效率的必由之路。尤其在服装行业&#xff0c;快速的市场反应和精准的供应链管理显得尤为重要。其中&#xff0c;智能商品计划管理作为数字化转型的核心要素&#xff0c;正在重塑整个行业的竞争格局…

vite 脚手架搭建 vue3 项目

一、版本 node 版本&#xff1a;18.11.0 二、创建前准备 如果还未安装 vite 需先安装&#xff1a; 1、winr&#xff0c;输入 cmd 进入命令提示符窗口&#xff0c;输入以下命令全局安装vite npm install -g vite2、查看安装成功后的 vite 版本 npm list vite三、步骤 1、…