链表:无头双向链表的操作与实现

(一)、什么是无头双向链表

在这里插入图片描述

二、双向链表的操作

(一)、带有前驱的节点。

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){
            count++;
            cur=cur.next;
        }
        return count;
    }

(四)、头插法

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

在这里插入图片描述

(五)尾插法


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

在这里插入图片描述

(六)索引位置

 //索引位置
    public ListNode searchIndex(int index){
        ListNode cur=this.head;
        if (index<0||index>size()){
            System.out.println("输入不合法");
        }
        while (index!=0&&cur!=null){
            cur=cur.next;
            index--;
        }
        return cur;
    }

在这里插入图片描述

(七)任意位置插入

//任意位置插入,第一个数据节点为0号下标
    public void addIndex(int index,int data){
        ListNode node=new ListNode(data);
        if (index<0||index>size()){
            System.out.println("输入不合法");
            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;
    }

在这里插入图片描述

(八) 查找是否包含关键字key

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

删除第一次出现关键字为key

//删除第一次出现关键字为key的节点
    public void remove(int key) {
        ListNode cur = this.head;
        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;
            } else {
                cur = cur.next;
            }
        }
    }

删除所有值为key

//删除所有值为key的节点
    public void removeAllKey(int key) {
        ListNode cur = this.head;
        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;
        }
    }
    public void clear(){
        while (this.head!=null){
            ListNode curNext=head.next;
            head.next=null;
            head.prev=null;
            head=curNext;
        }
        last=null;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值