【数据结构与算法】5.详解双向链表的基本操作(Java语言实现)

在这里插入图片描述
📚博客主页:爱敲代码的小杨.

✨专栏:《Java SE语法》

❤️感谢大家点赞👍🏻收藏⭐评论✍🏻,您的三连就是我持续更新的动力❤️

🙏小杨水平有限,欢迎各位大佬指点,相互学习进步!

文章目录

  • 0. 前言
  • 1. 双链表的定义
  • 2. LinkedList 模拟实现
    • 2.1 接口
    • 2.2 定义双向链表类
    • 2.3 定义两个指针,分别指向头节点和尾节点
    • 2.4 头插法
    • 2.5 尾插法
    • 2.6 指定位置插入元素
    • 2.7 查找指定元素
    • 2.8 删除指定元素
    • 2.9 删除链表中所有指定元素
    • 2.10 统计链表元素个数
    • 2.11 清空链表
    • 2.12 打印链表
    • 2.13 测试
  • 3.代码
  • 4. ArrayList和LinkedList的区别

0. 前言

上一篇【数据结构与算法】4.自主实现单链表的增删查改 我们自主实现了单链表的操作,在Java的集合类中LinkedList底层实现是无头双向循环链表。所以今天我们模拟LinkedList的实现。

1. 双链表的定义

学习双链表之前,做个回顾。

单链表的特点:

  1. 我们可以轻松的到达下一个节点,但是回到前一节点是很难的。
  2. 只能从头遍历到尾或者从尾遍历到头(一般是从头到尾)

双链表的特点:

  1. 每次在插入或删除某个节点时, 需要处理四个节点的引用, 而不是两个. 实现起来要困难一些
  2. 相对于单向链表, 必然占用内存空间更大一些.
  3. 既可以从头遍历到尾, 又可以从尾遍历到头

双链表的定义:

双向链表也叫双链表,是链表的一种,它的每个数据结点中都有两个指针,分别指向直接后继和直接前驱。所以,从双向链表中的任意一个结点开始,都可以很方便地访问它的前驱结点和后继结点。

image-20240125171130806

指针域(prev):用于指向当前节点的直接前驱节点;

数据域(data):用于存储数据元素;

指针域(next):用于指向当前节点的直接后继节点。

2. LinkedList 模拟实现

2.1 接口

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();
}

2.2 定义双向链表类

static class ListNode {public int val; // 数值域 - 存放当前节点的值public ListNode next; // next域 指向下一个节点public ListNode prev; // prev域 指向上一个节点public ListNode(int val) {this.val = val;}
}

2.3 定义两个指针,分别指向头节点和尾节点

// 链表的属性 链表的头节点
public ListNode head; 
// 链表的属性 链表的尾节点
public ListNode last;

2.4 头插法

  1. 判断链表是否为空,如果为空,将新节点的node设置为头节点,将新节点的node设置为尾节点

    head = node;
    last = node;
    
  2. 如果链表不为空,将新节点的nodenext域设置为头节点,将当前头节点的prev设置为新节点的node,更新头节点为新节点的node

    node.next = head;
    head.prev = node;
    head = node;
    

动画演示:

1706271497900

代码:

/**
* 头插法
* @param data
*/
@Override
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;}
}

2.5 尾插法

  1. 判断链表是否为空,如果为空,将新节点的node设置为头节点,将新节点的node设置为尾节点

    head = node;
    last = node;
    
  2. 如果链表不为空,将最后一个节点lastnext域指向新节点,新节点的prev域指向最后一个节点,更新尾节点为新节点

    last.next = node;
    node.prev = last;
    last = node;
    

动画演示:

1706271820869

代码:

    /**** 尾插法* @param data*/@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;}}

2.6 指定位置插入元素

  1. 判断索引idnex是否合法,如果不合法则抛出异常。

    if (index < 0 || index > size()) {throw new IndexException("index不合法:" + index);
    }
    
  2. 判断链表是否为空,如果为空则将新节点设置为头节点和尾节点

    if (head == null) {head = node;last = node;return;
    }
    
  3. 如果索引index == 0,则使用头插法,如果索引index = 链表长度,则使用尾插法

    if (index == 0) {addFirst(data);return;
    }
    if (index == size()) {addLast(data);return;
    }
    
  4. 找到索引节点(当前节点)

        private ListNode findIndex(int index) {ListNode cur = head;while (index != 0) {cur = cur.next;index--;}return cur;}
    
  5. 将新节点的next域指向当前节点,新节点的prev域指向当前节点的前一个节点,当前节点的prev域指向新节点,更新新节点的上一个节点的next域指向当前节点。

    ListNode cur = findIndex(index);
    node.next = cur;
    node.prev = cur.prev;
    cur.prev = node;
    node.prev.next = node;
    

动画演示:

1706272997346

2.7 查找指定元素

  1. 从头节点开始遍历链表,如果当前节点的值与要查找的key相等,则返回ture,如果不相等则移动下一个节点继续查找。如果遍历完链表都没有找到key则返回false.

代码:

    @Overridepublic boolean contains(int key) {ListNode cur = head;while (cur != null) {if (cur.val == key) {return true;}cur = cur.next;}return false;}

2.8 删除指定元素

  1. 从头节点开始遍历链表,找到要删除的节点

  2. 情况一:删除的节点为头节点,更新头节点为下一个节点,更新下一个节点的prev域置为空。

    1706277210409

  3. 情况二:链表中只有一个元素,且正好要删除这个元素。

  4. 情况三:删除的节点为尾节点,更新尾节点为当前节点的上一个节点,上一个节点的next域置为空

    1706277783850

  5. 情况四:删除中间节点,当前节点的上一个节点的next域指向当前节点的下一个节点,更新下一个节点的prev域指向当前节点的上一个节点

    1706278104977

  6. 删除了节点就结束方法的执行

代码:

    @Overridepublic void remove(int key) {ListNode cur = head;while (cur != null) {if (cur.val == key) { // 找到要删除的元素了if (cur == head) { // 删除头节点head = head.next;if (head != null) {head.prev = null;} else { // 链表中只有一个元素,且这个正好删除这个元素last = null;}} else { // 删除中间节点cur.prev.next = cur.next;if (cur.next != null) {cur.next.prev = cur.prev;} else {// 删除尾节点last = cur.prev;}}return;// 删除了节点就结束方法}cur = cur.next;}}

2.9 删除链表中所有指定元素

从头节点遍历链表,与删除指定元素的方式一样,删除节点后继续遍历链表,直到遍历完链表,删除所有指定的元素即可。

代码:

    @Overridepublic void removeAllKey(int key) {ListNode cur = head;while (cur != null) {if (cur.val == key) { // 找到要删除的元素了if (cur == head) { // 删除头节点head = head.next;if (head != null) {head.prev = null;} else { // 链表中只有一个元素,且这个正好删除这个元素last = null;}} else { // 删除中间节点cur.prev.next = cur.next;if (cur.next != null) {cur.next.prev = cur.prev;} else {// 删除尾节点last = cur.prev;}}}cur = cur.next;}}

2.10 统计链表元素个数

代码:

    @Overridepublic int size() {int count = 0;ListNode cur = head;while (cur != null) {count++;cur = cur.next;}return count;}

2.11 清空链表

将头节点和尾节点置为空,没有引用指向直接被JVM回收

    @Overridepublic void clear() {head = null;last = null;}

2.12 打印链表

    @Overridepublic void display() {ListNode cur = head;while (cur != null) {System.out.print(cur.val + " ");cur = cur.next;}System.out.println();}

2.13 测试

public class Test {public static void main(String[] args) {MyLinkedList myLinkedList = new MyLinkedList();// 头插法myLinkedList.addFirst(1);myLinkedList.addFirst(2);myLinkedList.addFirst(3);// 打印链表myLinkedList.display();System.out.println("=========");// 尾插法myLinkedList.addLast(4);myLinkedList.addLast(5);myLinkedList.addLast(6);// 打印链表myLinkedList.display();System.out.println("=========");// 在4 位置插入7myLinkedList.addIndex(4,7);// 打印链表myLinkedList.display();System.out.println("=========");// 查找元素 7 8System.out.println(myLinkedList.contains(7));System.out.println(myLinkedList.contains(8));System.out.println("=========");// 删除3 6 4myLinkedList.remove(3);myLinkedList.display();System.out.println("=========");myLinkedList.remove(6);myLinkedList.display();System.out.println("=========");myLinkedList.remove(4);myLinkedList.display();System.out.println("=========");// 删除全部的2myLinkedList.addLast(2);myLinkedList.addLast(2);myLinkedList.addLast(2);myLinkedList.display();myLinkedList.removeAllKey(2);myLinkedList.display();System.out.println("=========");// 统计个数System.out.println(myLinkedList.size());System.out.println("=========");// 清空链表myLinkedList.clear();myLinkedList.display();System.out.println("=========");// 统计个数System.out.println(myLinkedList.size());}
}// 运行结果
3 2 1 
=========
3 2 1 4 5 6 
=========
3 2 1 4 7 5 6 
=========
true
false
=========
2 1 4 7 5 6 
=========
2 1 4 7 5 
=========
2 1 7 5 
=========
2 1 7 5 2 2 2 
1 7 5 
=========
3
==================
0

3.代码

MyLinkedList类:

public class MyLinkedList implements IList{static class ListNode {public int val; // 数值域 - 存放当前节点的值public ListNode next; // next域 指向下一个节点public ListNode prev; // prev域 指向上一个节点public ListNode(int val) {this.val = val;}}// 链表的属性 链表的头节点public ListNode head;// 链表的属性 链表的尾节点public ListNode last;/*** 头插法* @param data*/@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;}}/**** 尾插法* @param data*/@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) {if (index < 0 || index > size()) {throw new IndexException("index不合法:" + index);}ListNode node = new ListNode(data);if (head == null) {head = node;last = node;return;}if (index == 0) {addFirst(data);return;}if (index == size()) {addLast(data);return;}ListNode cur = findIndex(index);node.next = cur;node.prev = cur.prev;cur.prev = node;node.prev.next = node;}private ListNode findIndex(int index) {ListNode cur = head;while (index != 0) {cur = cur.next;index--;}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 = head;while (cur != null) {if (cur.val == key) { // 找到要删除的元素了if (cur == head) { // 删除头节点head = head.next;if (head != null) {head.prev = null;} else { // 链表中只有一个元素,且这个正好删除这个元素last = null;}} else { // 删除中间节点cur.prev.next = cur.next;if (cur.next != null) {cur.next.prev = cur.prev;} else {// 删除尾节点last = cur.prev;}}return;}cur = cur.next;}}@Overridepublic void removeAllKey(int key) {ListNode cur = head;while (cur != null) {if (cur.val == key) { // 找到要删除的元素了if (cur == head) { // 删除头节点head = head.next;if (head != null) {head.prev = null;} else { // 链表中只有一个元素,且这个正好删除这个元素last = null;}} else { // 删除中间节点cur.prev.next = cur.next;if (cur.next != null) {cur.next.prev = cur.prev;} else {// 删除尾节点last = cur.prev;}}}cur = cur.next;}}@Overridepublic int size() {int count = 0;ListNode cur = head;while (cur != null) {count++;cur = cur.next;}return count;}@Overridepublic void clear() {head = null;last = null;}@Overridepublic void display() {ListNode cur = head;while (cur != null) {System.out.print(cur.val + " ");cur = cur.next;}System.out.println();}
}

接口:

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();
}

异常类:

public class IndexException extends RuntimeException{public IndexException() {}public IndexException(String msg) {super(msg);}
}

4. ArrayList和LinkedList的区别

不同点ArrayListLinkedList
存储空间上物理上一定连续逻辑上连续,但物理上不一定连续
随机访问支持O(1)不支持O(n)
头插需要搬移元素,效率低O(n)只需要修改引用的指向,时间复杂度为O(1)
插入空间不够时需要扩容没有容量的概念
应用场景元素高效存储 + 频繁访问任意位置插入和删除频繁

在这里插入图片描述

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

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

相关文章

OceanMind海睿思入选《2023大数据产业年度创新技术突破奖》,并蝉联多项图谱

近日&#xff0c;由数据猿和上海大数据联盟主办&#xff0c;上海市经济和信息化委员会、上海市科学技术委员会指导的“第六届金猿季&魔方论坛——大数据产业发展论坛”在上海成功举行&#xff0c;吸引了数百位业界精英的参与。中新赛克海睿思作为国内数字化转型优秀厂商代表…

Java通过模板替换实现excel的传参填写

以模板为例子 将上面$转义的内容替换即可 package com.gxuwz.zjh.util;import org.apache.poi.ss.usermodel.*; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import java.io.*; import java.util.HashMap; import java.util.Map; import java.io.IOException; impor…

二极管漏电流对单片机ad采样偏差的影响

1&#xff0c;下图是常规的单片机采集电压电路&#xff0c;被测量电压经过电阻分压&#xff0c;给到mcu采集&#xff0c;反向二极管起到钳位作用&#xff0c;避免高压打坏mcu。 2&#xff0c;该电路存在的问题 二极管存在漏电流&#xff0c;会在100k电阻上产生叠加电压&#x…

内存管理(mmu)/内存分配原理/多级页表

1.为什么要做内存管理&#xff1f; 随着进程对内存需求的扩大&#xff0c;和同时调度的进程增加&#xff0c;内存是比较瓶颈的资源&#xff0c;如何更好的高效的利于存储资源是一个重要问题。 这个内存管理的需求也是慢慢发展而来&#xff0c;早期总线上的master是直接使用物…

【大数据】Flink 中的事件时间处理

Flink 中的事件时间处理 1.时间戳2.水位线3.水位线传播和事件时间4.时间戳分配和水位线生成 在之前的博客中&#xff0c;我们强调了时间语义对于流处理应用的重要性并解释了 处理时间 和 事件时间 的差异。虽然处理时间是基于处理机器的本地时间&#xff0c;相对容易理解&#…

scoped属性和深度选择器

在Vue单文件组件&#xff08;SFC&#xff09;中&#xff0c;为了防止样式全局污染&#xff0c;可以给 所有的scoped的css编译出来都会变成.class[哈希值]的形式 我们只能修改带data-v-0dca3a9a作用域的样式&#xff0c;像是 如果修改el-table的宽度 .el-table {width: 60…

MYSQL实现分组排名和不分组排名(函数RANK,DENSE_RANK和ROW_NUMBER)

目录 1. 排名分类1.1 区别RANK&#xff0c;DENSE_RANK和ROW_NUMBER1.2 分组排名 2. 准备数据3. 不分组排名3.1 连续排名3.2 并列跳跃排名3.3 并列连续排名 4. 分组排名4.1 分组连续排名4.2 分组并列跳跃排名4.3 分组并列连续排名 1. 排名分类 1.1 区别RANK&#xff0c;DENSE_R…

Elasticsearch8.11集群部署

集群就是多个node统一对外提供服务&#xff0c;避免单机故障带来的服务中断&#xff0c;保证了服务的高可用&#xff0c;也因为多台节点协同运作&#xff0c;提高了集群服务的计算能力和吞吐量。ES是一个去中心化的集群&#xff0c;操作一个节点和操作一个集群是一样的&#xf…

大文件传输之以太网UDP传输延迟解决方案

在数字化浪潮席卷全球的今天&#xff0c;数据已成为企业最宝贵的资产之一。随着企业规模的扩大和业务的全球化&#xff0c;大文件传输的需求日益增长&#xff0c;它不仅关系到企业内部数据的高效管理&#xff0c;也是与外部合作伙伴进行有效沟通的关键。然而&#xff0c;大文件…

万字长文:深度学习如何入门?

深度学习是一种强大的机器学习方法&#xff0c;它在各个领域都有广泛应用。如果你是一个新手&#xff0c;想要入门深度学习&#xff0c;下面是一些步骤和资源&#xff0c;可以帮助你开始学习和实践深度学习。 1. 学习基本概念 在开始深度学习之前&#xff0c;你需要对一些基本…

前端工程化之:webpack1-6(编译过程)

一、webpack编译过程 webpack 的作用是将源代码编译&#xff08;构建、打包&#xff09;成最终代码。 整个过程大致分为三个步骤&#xff1a; 初始化编译输出 1.初始化 初始化时我们运行的命令 webpack 为核心包&#xff0c; webpack-cli 提供了 webpack 命令&#xff0c;通过…

《动手学深度学习(PyTorch版)》笔记4.1

注&#xff1a;书中对代码的讲解并不详细&#xff0c;本文对很多细节做了详细注释。另外&#xff0c;书上的源代码是在Jupyter Notebook上运行的&#xff0c;较为分散&#xff0c;本文将代码集中起来&#xff0c;并加以完善&#xff0c;全部用vscode在python 3.9.18下测试通过。…