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

[数据结构与算法]双链表的实现

先前只要好好看过我前面写的单链表步骤实现后面的双链表代码不难,就当是给读者一个小练习吧,我就直接上代码了就不一一介绍了。

package Test14;
class Node{
    public int data;
    public Node next;
    public Node prev;

    public Node(int data) {
        this.data = data;
    }
}

public class Test03 {
    public Node head;
    public Node last;

    //头插法
    public void addFirst(int data) {
        Node node=new Node(data);
        if(this.head!=null){
            head.prev=node;
            node.next=head;
            head=node;
        }else{
            head=node;
            last=node;
        }
    }
    //尾插法
    public void addLast(int data) {
        Node node=new Node(data);
        if(this.head!=null){
            last.next=node;
            node.prev=last;
            last=node;
        }else{
            head=node;
            last=node;
        }
    }
    //任意位置插入,第一个数据节点为0号下标
    public Node findnode(int index){
        Node cur=this.head;
        while (index-1!=0){
            cur=cur.next;
            index--;
        }
        return cur;
    }
    public void addIndex(int index,int data) {
        if(index<0||index>size()){
            System.out.println("输入的数有问题");
            return;
        }

        if(index==0){
            addFirst(data);
            return;
        }
        if(index==size()){
            addLast(data);
            return;
        }

        Node node=new Node(data);
        Node cur=findnode(index);

        node.next=cur.next;
        node.prev=cur;
        cur.next.prev=node;
        cur.next=node;
    }
    //查找是否包含关键字key是否在单链表当中
    public boolean contains(int key) {
        if(this.head==null){return false;}
        Node cur=this.head;
        while (cur!=null){
            if(cur.data==key){
                return true;
            }
            cur=cur.next;
        }
        return false;
    }
    //删除第一次出现关键字为key的节点
    public void remove(int key) {
        Node cur=this.head;
        while (cur!=null){
            if(cur.data==key){
                if(cur==this.head){
                    this.head=this.head.next;
                    if(this.head==null){
                        this.last=null;
                    }else{
                        head.prev=null;
                    }
                }else{
                    if(cur.next==null){
                        cur.prev.next=null;
                        this.last=cur.prev;
                    }else {
                        cur.prev.next=cur.next;
                        cur.next.prev=cur.prev;
                    }
                }
                return;
            }else{
                cur=cur.next;
            }
        }
    }
    //删除所有值为key的节点
    public void removeAllKey(int key) {
        Node cur=this.head;
        while (cur!=null){
            if(cur.data==key){
                if(cur==this.head){
                    this.head=this.head.next;
                    if(this.head==null){
                        this.last=null;
                    }else{
                        head.prev=null;
                    }
                }else{
                    if(cur.next==null){
                        cur.prev.next=null;
                        this.last=cur.prev;
                    }else {
                        cur.prev.next=cur.next;
                        cur.next.prev=cur.prev;
                    }
                }
                cur=cur.next;
            }else{
                cur=cur.next;
            }
        }
    }
    //得到单链表的长度
    public int size() {
        if(this.head==null) {return -1;}
        Node cur=this.head;
        int count=0;
        while (cur!=null){
            count++;
            cur=cur.next;
        }
        return count;
    }

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

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

    public static void main(String[] args) {
        Test03 test03=new Test03();
        test03.addFirst(1);
        test03.addFirst(2);
        test03.addLast(3);
        test03.addLast(2);
        test03.addIndex(2,10);
        test03.display();
        System.out.println("============================");
        test03.removeAllKey(2);
        test03.display();
        System.out.println(test03.size());
        System.out.println(test03.contains(10));
        test03.clear();
        test03.display();
    }
}

可以看到这说明你吧这个认真看完了,加油吧年轻人!!!

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

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