IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> Java学习苦旅(十)——链表的奥秘 -> 正文阅读

[数据结构与算法]Java学习苦旅(十)——链表的奥秘

本篇博客将详细讲解链表的知识。

什么是链表

链表是一种物理存储结构上非连续存储结构,数据元素的逻辑顺序是通过链表中的引用链接次序实现的。通俗地说,链表是由一个个节点组合而成的。而节点,是用数据域和下一个节点地址构成的,如:

image-20220102173341699

链表即为:

image-20220102173934330

而上面这个链表,也被成为 单向不带头非循环链表

那么什么是带头呢?

带头的意思是存在头节点,也叫做傀儡节点,例如:

image-20220102174541639

这个就是 单向带头非循环链表 。除此之外,还有双向链表,循环链表,这些都会在之后介绍的。

单向链表

穷举创建链表

为了让读者更好地理解链表,我先用穷举的方法创建链表。代码如下:

class ListNode {
    public int val;
    public ListNode next;
    
    public ListNode(int val) {
        this.val = val;
    }
}//代表一个节点

public class MyLinkList {
    public ListNode head;//链表的头引用
    
    public void creatList() {
        ListNode listNode1 = new ListNode(12);
        ListNode listNode2 = new ListNode(23);
        ListNode listNode3 = new ListNode(34);
        ListNode listNode4 = new ListNode(45);
        ListNode listNode5 = new ListNode(56);
        listNode1.next = listNode2;
        listNode2.next = listNode3;
        listNode3.next = listNode4;
        listNode4.next = listNode5;
        this.head = listNode1;
    }
}

因此,这也就创建了这样的一个链表:

image-20220102202844043

打印链表

打印链表和打印顺序表的方法是类似的,只不过打印顺序表是下标++,而打印链表需要引用下一个节点的地址。具体代码如下:

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

判断单链表中是否包含某数据

在链表的使用过程中,我们需要判断某数据是否存在于链表中,假设该数据为key,具体代码如下:

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

测量单链表的长度

在使用单链表的过程中,我们需要知道单链表的长度。

顺序表4

实现该功能的代码如下:

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

头插法增加节点

使用头插法增加节点是单链表中增加数据的常见方法。

顺序表6

具体代码如下:

public void addFirst(int data) {
    LisrNode node = new ListNode(data);
    node.next = this.head;
    this.head = node;
}

尾插法增加节点

尾插法增加节点也是一个较为常见的增加数据的方法

顺序表9

具体代码如下:

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

任意位置插入节点

在单链表的使用过程中,往往需要在指定位置增加数据,例如:

顺序表10

假设在index位置插入data数据,具体代码如下:

public void addIndex(int index,int data) {
    if (index < 0 || index > size()) {
        System.out.println("index位置不合法");
        return;
    }
    if(index == 0) {
        addFirst(data);
        return;
    }
    if(index == size()) {
        addLast(data);
        return;
    }
    ListNode cur = findIndex(index);
    ListNode node = new ListNode(data);
    node.next = cur.next;
    cur.next = node;
}

public ListNode findIndex(int index) {
    ListNode cur = this.head;
    while(index - 1 != 0) {
        cur = cur.next;
        index--;
    }
    return cur;
}

删除某个第一次出现的数据

在单链表中,我们要删除某个第一次出现的数据,假设该数据为key,具体代码如下:

public void remove(int key) {
    if(this.head == null) {
        System.out.println("单链表为空");
        return;
    }
    if(this.head.val == key) {
        this.head = this.head.next;
        return;
    }
    ListNode cur = searchPrev(key);
    if (cur == null) {
        System.out.println("没有你要删除的节点!");
        return;
    }
    ListNode del = cur.next;
    cur.next = del.next;
}

public ListNode searchPrev(int key) {
    ListNode cur = this.head;
    while (cur.next != null) {
        if (cur.next.val == key) {
            return cur;
        }
        cur = cur.next;
    }
    return null;
}

删除多个同一数据

上面这段代码只能删除某个第一次出现的数据,如果一个数据在链表中出现多次,那么想删除的话,上面这段代码就不适用。因此,我们需要更改一下思路,假设要删除多个key,具体代码如下:

public ListNode removeAllkey(int key) {
    if(this.head == null) {
        return null;
    }
    ListNode prev = this.head;
    ListNode cur = this.head.next;
    while(cur != null) {
        if(cur.val == key) {
            prev.next = cur.next;
            cur = cur.next;
        }else {
            prev = cur;
            cur = cur.next;
        }
    }
    if(this.head.val == key) {
        this.head = this.head.next;
    }
    return this.head;
}

清空链表

清空链表的具体代码如下:

public void clear() {
    while(this.head != null) {
        ListNode curNext = head.next;
        this.head.next = null;
        this.head = curNext;
    }
}

双向链表

还记得开头所提到的双向链表吗?

下面将介绍双向链表的相关特性。

什么是双链表

单链表中的节点是由一个数据域和下一节点的地址所构成的,双链表的节点是在单链表的基础上,存放前一个节点的地址。例如:

image-20220108193013121节点的代码实现如下:

class ListNode {
    public int val;
    public ListNode prev;
    public ListNode next;
    public ListNode(int val) {
        this.val = val;
    }
}

单链表有头节点,双向既有头节点,也有尾节点。代码实现如下:

public class MyLinkedList {
    public ListNode head;//指向双向链表的头节点
    public ListNode last;//指向双向链表的尾节点
}

打印双向链表

打印双向链表的方法与打印单链表的方法相同,具体代码如下:

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

测量双链表的长度

测量双链表长度和单链表的方法也是一样的,具体代码如下:

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

判断双向链表中是否包含某数据

这个与单链表的方法一样,具体代码如下:

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

头插法增加节点

双向链表的头插法与单向链表的头插法略有不同

顺序表7

具体代码如下:

public void addFirst(int data) {
    ListNode node = new ListNode(data);
    if (this.head == null) {
        this.head = node;
        this.last = node;
    }else {
        node.next = this.head;
        this.head.prev = node;
        this.head = node;
    }
}

尾插法增加节点

双向链表的尾插法和双向链表的头插法类似

顺序表8

具体代码如下:

public void addLast(int data) {
    ListNode node = new ListNode(data);
    if (this.head == null) {
        this.head = node;
        this.last = node;
    }else {
        this.last.next = node;
        node.prev = this.last;
        this.last = node;
    }
}

任意位置增加节点

双向链表任意位置增加节点和单向链表的方法类似,具体代码如下:

public void addIndex(int index, int data) {
    ListNode node = new ListNode(data);
    if (index < 0 || index > size()) {
        System.out.println("index位置不合法!");
        return;
    }
    if (index == 0) {
        addFirst(data);
        return;
    }
    if (index == size()) {
        addLast(data);
        return;
    }
    ListNode cur = searchIndex(index);
    node.next = cur.prev.next;
    cur.prev.next = node;
    node.prev = cur.prev;
    cur.prev = node;
}

public ListNode searchIndex(int index) {
    ListNode cur = this.head;
    while (index != 0) {
        cur = cur.next;
        index--;
    }
    return cur;
}

删除某个节点

双向链表删除某个比单链表稍微复杂一点,不过也那么难。具体代码如下:

public void remove(int key) {
    ListNode cur = this.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 = last.prev;
                }
            }
            return;
        }
        cur = cur.next;
    }
}

删除多个数值相同的节点

双向链表中的删除多个数值相同的节点比单链表的要简单。如果明白了双向链表删除单个节点的原理的话,那么删除多个也就不成问题了。具体代码如下:

public void removeALLKey(int key) {
    ListNode cur = this.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 = last.prev;
                }
            }
        }
        cur = cur.next;
    }
}

清空链表

清空双向链表需要一个节点一个节点地清空,具体代码如下:

public void clear() {
    while (head != null) {
        ListNode curNext = head.next;
        head.next = null;
        head.prev = null;
        head = curNext;
    }
    last = null;
}

顺序表与链表的区别

对数据的组织方式

顺序表底层是一个数组,逻辑上和内存上都是连续的;链表是一个由若干个节点组成的一个数据结构,逻辑上是连续的,但内存上是不连续的。

对数据的操作方式

顺序表适合查找相关的操作,因为可以使用下标直接获取到某个位置的元素。

链表适合频繁的插入和删除操作。它无需像顺序表那样移动元素,它的插入只需要修改指向即可。

此外,顺序表满了之后还需要扩容,同时无法保证空间被充分利用,所以顺序表的空间利用率不高。

结尾

下一篇博客,将介绍java里的包。

上一篇博客:Java学习苦旅(九)——原来顺序表可以这么简单呀

下一篇博客预告:Java学习苦旅(十一)——你好,买“包”不?

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-01-12 00:15:37  更:2022-01-12 00:15:59 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 18:54:04-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码