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 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 数据结构与算法之链表 -> 正文阅读

[数据结构与算法]数据结构与算法之链表

1.??链表的概念及结构

? ? ? ?链表是一种 物理存储结构上非连续 存储结构,数据元素的 逻辑顺序 是通过链表中的 引用链接 次序实现的 。
实际中链表的结构非常多样,以下情况组合起来就有 8 种链表结构:
1. 单向或者双向
2. 带头或者不带头
3. 循环或者非循环
那么组合起来就有8种结构, 虽然有这么多的链表的结构,但是我们重点掌握两种:?无头单向非循环链表 ,无头双向链表

2. 链表的实现

// 1、无头单向非循环链表实现
public class SingleLinkedList {
//头插法
public void addFirst(int data);
//尾插法
public void addLast(int data);
//任意位置插入,第一个数据节点为0号下标
public boolean 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 display();
//清空整个链表
public void clear();
}

1. 创建一个链表

static class ListNode {
        public int val;
        public ListNode next;

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

public void createList(){
        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;

    }

?2. 打印链表的所有元素:

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

?

3. 输出链表的长度

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

?

?4. 查找是否包含关键字key在单链表中

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

?5. 头插法插数据元素

 public void addFirst(int data){
        ListNode node = new ListNode(data);//给一个节点
        if (this.head == null) {//空链表
            this.head = node;
        }else {
            node.next = this.head;
            head = node;
        }
    }

?6.尾插法插入数据元素

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

?7. 任意位置插入节点

    //任意位置插入
    public void addIndex(int index,int data) {
        if (index < 0 || index > size()) {
            System.out.println("index 不合法!");
            throw new IndexWrongFullExcept("index 位置不合法!");
        }
        if (index == 0) {//相当于头插法
            addFirst(data);
            return;
        }
        if (index == size()) {//相当于尾插法
            addLast(data);
            return;
        }
        //插入节点
        ListNode ret = findIndexSubOne(index);
        ListNode node = new ListNode(data);
        node.next = ret.next;
        ret.next = node;
    }
    //先走index-1步,找到ret
    private ListNode findIndexSubOne(int index){
        ListNode ret = this.head;
        while (index - 1 != 0){
            ret = ret.next;
            index --;
        }
        return ret;
    }

?8. 删除第一次出现的key的节点

     public void remove(int key) {
        if (this.head == null) {
            return;
        }
        if (this.head.val == key) {
            this.head = head.next;
            return;
        }
        ListNode ret = findPrevOfKey(key);
        ListNode del = ret.next;
        if (ret == null) {
            System.out.println("没有找到要删除的数字!");
            return;
        } else {
            ret.next = del.next;
        }
    }
    //找到要删除的节点的前一个节点
    private ListNode findPrevOfKey(int key){
        ListNode ret = this.head;
        while (ret.next != null){
            if (ret.next.val == key) {
                return ret;
            }
            ret = ret.next;
        }
        return null;
    }

9. 删除所有值为key的节点

 //删除所有值为key的节点
    public void removeAllKey(int key){
        ListNode ret = this.head.next;
        ListNode prev = this.head;
        while (ret != null){
            if (ret.val == key){
                prev.next = ret.next;
                ret = ret.next;
            }
            else {
                prev = ret;
                ret = ret.next;
            }
        }
        if (this.head.val == key){
            this.head = head.next;
        }
    }

?

10. 清空整个链表

这个很简单 我们让我们的头节点直接变成空的,是不是就清空了

  //清空整个链表
    public void clear(){
        this.head = null;

    }

?3. 自己实现一个链表的全部代码

public class MySingleList {
    //内部类表示一个节点
    static class ListNode {
        public int val;
        public ListNode next;

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

    public ListNode head;//头节点

    //头插法
    public void addFirst(int data) {
        ListNode node = new ListNode(data);//给一个节点
        if (this.head == null) {//空链表
            this.head = node;
        } else {
            node.next = this.head;
            head = node;
        }
    }

    //尾插法
    public void addLast(int data) {
        ListNode node = new ListNode(data);
        ListNode ret = this.head;
        if (this.head == null) {
            this.head = node;
        }
        while (ret.next != null) {
            ret = ret.next;
        }
        ret.next = node;
    }

    //任意位置插入
    public void addIndex(int index, int data) {
        if (index < 0 || index > size()) {
            System.out.println("index 不合法!");
            throw new IndexWrongFullExcept("index 位置不合法!");
        }
        if (index == 0) {//相当于头插法
            addFirst(data);
            return;
        }
        if (index == size()) {//相当于尾插法
            addLast(data);
            return;
        }
        //插入节点
        ListNode ret = findIndexSubOne(index);
        ListNode node = new ListNode(data);
        node.next = ret.next;
        ret.next = node;
    }

    //先走index-1步,找到ret
    private ListNode findIndexSubOne(int index) {
        ListNode ret = this.head;
        while (index - 1 != 0) {
            ret = ret.next;
            index--;
        }
        return ret;
    }


    //查找是否包含关键字key是否在单链表当中
    public boolean contains(int key) {
        ListNode ret = this.head;
        while (ret != null) {
            if (ret.val == key) {
                return true;
            }
            ret = ret.next;
        }
        return false;
    }

    //删除第一次出现关键字为key的节点
    public void remove(int key) {
        if (this.head == null) {
            return;
        }
        if (this.head.val == key) {
            this.head = head.next;
            return;
        }
        ListNode ret = findPrevOfKey(key);
        ListNode del = ret.next;
        if (ret == null) {
            System.out.println("没有找到要删除的数字!");
            return;
        } else {
            ret.next = del.next;
        }
    }
    //找到要删除的节点的前一个节点
    private ListNode findPrevOfKey(int key){
        ListNode ret = this.head;
        while (ret.next != null){
            if (ret.next.val == key) {
                return ret;
            }
            ret = ret.next;
        }
        return null;
    }

    //删除所有值为key的节点
    public void removeAllKey(int key){
        ListNode ret = this.head.next;
        ListNode prev = this.head;
        while (ret != null){
            if (ret.val == key){
                prev.next = ret.next;
                ret = ret.next;
            }
            else {
                prev = ret;
                ret = ret.next;
            }
        }
        if (this.head.val == key){
            this.head = head.next;
        }
    }

    //得到单链表的长度
    public int size(){
        int usedsize = 0;
        ListNode ret = this.head;
        while (ret != null){
            usedsize ++;
            ret = ret.next;
        }
        return usedsize;
    }
    //打印列表当中的元素
    public void display(){
        if (this.head == null) {
            return ;
        }
        ListNode ret = this.head;
        while (ret != null){
            System.out.print(ret.val+" ");
            ret = ret.next;
        }
    }
    //清空整个链表
    public void clear(){
        this.head = null;

    }
    //创建链表
    public void createList(){
        ListNode listNode1 = new ListNode(12);
        ListNode listNode2 = new ListNode(12);
        ListNode listNode3 = new ListNode(34);
        ListNode listNode4 = new ListNode(12);
        ListNode listNode5 = new ListNode(12);
        listNode1.next = listNode2;
        listNode2.next = listNode3;
        listNode3.next = listNode4;
        listNode4.next = listNode5;
        this.head = listNode1;

    }
}

那么本次链表的分享就到此结束了,下次再见

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-10-22 21:39:02  更:2022-10-22 21:42:01 
 
开发: 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/25 20:25:49-

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