[数据结构] 链表(图文超详解讲解)(下)

简介: [数据结构] 链表(图文超详解讲解)(下)

8.删除第一次出在链表出现的key的关节点:

//找删除的前驱
    public ListNode searchPery(int key){
        ListNode cur = this.head;
        while(cur.next != null) {
            if (cur.next.val == key) {
                return cur;
            }
            cur = cur.next;
        }
        return null;
    }
    //删除第一次出现的关键字为key的节点
    public void remove(int key){
        if (this.head == null){
            System.out.println("单链表为空,不能删除");
            return;
        }
        if(key == this.head.val){
            this.head = this.head.next;
            return;
        }
        ListNode cur = searchPery(key);
        if(cur == null){
            System.out.println("没有你要删除的节点");
            return ;
        }
        ListNode del = cur.next;
        cur.next = del.next;
    }

9.删除所有出在链表出现的key的关节点:

 //删除出现所以是key的节点
    public ListNode removeAllkey(int key){
        if(this.head == null){
            return null;
        }
        ListNode cur = this.head.next;
        ListNode pver = this.head;
        while (cur != null){
            if(cur.val == key){
                pver.next = cur.next;
                cur = cur.next;
            }
            else {
                pver = cur;
                cur = cur.next;
            }
           return this.head;
        }
        if(this.head.val == key){
            this.head = this.head.next;
        }
        return this.head;
    }

10.清空链表:

 //清空链表
    public void clear(){
        //粗暴做法 this.head = null;
        ListNode curNext = this.head.next;
        while(this.head != null){
            this.head.next = null;
            this.head = curNext;
        }
    }
    public boolean chkPalindrome(){
        if(this.head == null){
            return true;
        }
        ListNode last = this.head;
        ListNode slow = this.head;
        while (last != null &&  last.next != null){
            last = last.next.next;
            slow = slow.next;
        }
        ListNode cur = slow.next;
        ListNode curNext = cur.next;

2.双向链表的方法实现代码:在已经了解单链表的结构后我们就会发现单链表和双链表的实现是大同小异的

class ListNode {
    public int val;
    public ListNode next;
    public ListNode prev;
    public ListNode(int val) {
        this.val = val;
    }
}
public class MyLinjedlist {
    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() {
        int count = 0;
        ListNode cur = this.head;
        while (cur != null) {
            count++;
            cur = cur.next;
        }
        return count;
    }
    //查找是否包含关键字key是否在链表中
    public boolean contains(int key) {
        if (this.head == null) {
            return false;
        }
        ListNode cur = this.head;
        while (cur != null) {
            if (cur.val != key) {
                cur = cur.next;
            } else {
                return true;
            }
        }
        return false;
    }
    //头插法
    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;
        }
    }
    //尾插法
    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;
        }
    }
//删除第一次出现关键字为key的节点
    public void remove(int key){
        ListNode cur = this.head;
        if(this.head == null){
            System.out.println("此链表为空,没有要删除的key值");
            return;
        }
        while(cur != null){
            if(cur.val == key){
                if(cur == head){
                    this.head = this.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;
        }
    }
    //删除所以key的节点
    public void removeAll(int key){
        ListNode cur = this.head;
        if(this.head == null){
            System.out.println("此链表为空,没有要删除的key值");
            return;
        }
        while(cur != null){
            if(cur.val == key){
                if(cur == head){
                    this.head = this.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;
        }
    }
    //任意位置插入,第一个数据节点默认为0下标
    public void addIndex(int index,int data){
        ListNode node = new ListNode(data);
        if(index == 0){
            addFirst(data);
            return;
        }
        if (index == size()-1){
            addLast(data);
            return;
        }
        ListNode cur = this.head;
       while (index != 0){
           index--;
           cur = cur.next;
       }
        node.next = cur;
        node.prev= cur.prev;
        cur.prev.next = node;
        cur.prev = node;
    }
    //清理链表
    public  void clear(){
        while (head != null){
            ListNode curNext = this.head.next;
            head.next = null;
            head.prev = null;
            head = curNext;
        }
        last = null;
    }
}


总结


根据读完本文后大家会对链表有更深的理解,并且能够掌握对方法的深层理解,相信大家在过后时间能够保持求学的态度,我们一起加油!offer拿到手软!对博主感兴趣可以关注博主,我会继续更新博客,努力完善我的文章内容不会辜负大家的期待!

 



相关文章
|
21天前
|
存储 算法 Perl
数据结构实验之链表
本实验旨在掌握线性表中元素的前驱、后续概念及链表的建立、插入、删除等算法,并分析时间复杂度,理解链表特点。实验内容包括循环链表应用(约瑟夫回环问题)、删除单链表中重复节点及双向循环链表的设计与实现。通过编程实践,加深对链表数据结构的理解和应用能力。
50 4
|
14天前
|
存储 缓存 算法
在C语言中,数据结构是构建高效程序的基石。本文探讨了数组、链表、栈、队列、树和图等常见数据结构的特点、应用及实现方式
在C语言中,数据结构是构建高效程序的基石。本文探讨了数组、链表、栈、队列、树和图等常见数据结构的特点、应用及实现方式,强调了合理选择数据结构的重要性,并通过案例分析展示了其在实际项目中的应用,旨在帮助读者提升编程能力。
33 5
|
1月前
|
存储 C语言
【数据结构】手把手教你单链表(c语言)(附源码)
本文介绍了单链表的基本概念、结构定义及其实现方法。单链表是一种内存地址不连续但逻辑顺序连续的数据结构,每个节点包含数据域和指针域。文章详细讲解了单链表的常见操作,如头插、尾插、头删、尾删、查找、指定位置插入和删除等,并提供了完整的C语言代码示例。通过学习单链表,可以更好地理解数据结构的底层逻辑,提高编程能力。
62 4
|
1月前
|
算法 安全 搜索推荐
2024重生之回溯数据结构与算法系列学习之单双链表精题详解(9)【无论是王道考研人还是IKUN都能包会的;不然别给我家鸽鸽丢脸好嘛?】
数据结构王道第2.3章之IKUN和I原达人之数据结构与算法系列学习x单双链表精题详解、数据结构、C++、排序算法、java、动态规划你个小黑子;这都学不会;能不能不要给我家鸽鸽丢脸啊~除了会黑我家鸽鸽还会干嘛?!!!
|
1月前
|
存储 Web App开发 算法
2024重生之回溯数据结构与算法系列学习之单双链表【无论是王道考研人还是IKUN都能包会的;不然别给我家鸽鸽丢脸好嘛?】
数据结构之单双链表按位、值查找;[前后]插入;删除指定节点;求表长、静态链表等代码及具体思路详解步骤;举例说明、注意点及常见报错问题所对应的解决方法
|
21天前
|
算法
数据结构之购物车系统(链表和栈)
本文介绍了基于链表和栈的购物车系统的设计与实现。该系统通过命令行界面提供商品管理、购物车查看、结算等功能,支持用户便捷地管理购物清单。核心代码定义了商品、购物车商品节点和购物车的数据结构,并实现了添加、删除商品、查看购物车内容及结算等操作。算法分析显示,系统在处理小规模购物车时表现良好,但在大规模购物车操作下可能存在性能瓶颈。
39 0
|
2月前
|
存储 Java
数据结构第三篇【链表的相关知识点一及在线OJ习题】
数据结构第三篇【链表的相关知识点一及在线OJ习题】
26 7
|
2月前
|
存储 安全 Java
【用Java学习数据结构系列】探索顺序表和链表的无尽秘密(附带练习唔)pro
【用Java学习数据结构系列】探索顺序表和链表的无尽秘密(附带练习唔)pro
26 3
|
2月前
|
算法 Java
数据结构与算法学习五:双链表的增、删、改、查
双链表的增、删、改、查操作及其Java实现,并通过实例演示了双向链表的优势和应用。
20 0
数据结构与算法学习五:双链表的增、删、改、查
|
1月前
|
C语言
【数据结构】双向带头循环链表(c语言)(附源码)
本文介绍了双向带头循环链表的概念和实现。双向带头循环链表具有三个关键点:双向、带头和循环。与单链表相比,它的头插、尾插、头删、尾删等操作的时间复杂度均为O(1),提高了运行效率。文章详细讲解了链表的结构定义、方法声明和实现,包括创建新节点、初始化、打印、判断是否为空、插入和删除节点等操作。最后提供了完整的代码示例。
43 0