#双向链表

1. 获取长度

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

2. 打印

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

3. 查找关键字Key是否在双向链表中

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

4.头插法

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

调用:

 public static void main(String[] args) {
        MyDoubleList myDoubleList = new MyDoubleList();
        myDoubleList.addFirst(1);
        myDoubleList.addFirst(2);
        myDoubleList.addFirst(3);
        myDoubleList.display();
        System.out.println(myDoubleList.size());
    }

结果:
在这里插入图片描述

5. 尾插法

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

6. 删除双向链表中第一次出现关键字为key的节点

public void remove(int key){
        Node cur = this.head;
        while (cur != null) {
            if (cur.val == key) {
                if (cur == this.head) {//删除的是头结点
                    this.head = this.head.next;
                    if (this.head != null) {
                        this.head.prev = null;

                    }else{//如果只有一个节点即头结点
                        this.last = null;//不能忘记否则会发生泄漏

                    }
                }else{
                    cur.prev.next = cur.next;//相同代码提出来
                    if (cur.next != null) {//中间节点
                        cur.next.prev = cur.prev;
                        
                    } else{//尾节点
                        this.last = cur.prev;
                    }
                }
                return;
            }else{
                cur = cur.next;
            }

        }

    }

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

 public void removeAllKey(int key){
        Node cur = this.head;
        while (cur != null) {
            if (cur.val == key) {
                if (cur == this.head) {//删除的是头结点
                    this.head = this.head.next;
                    if (this.head != null) {
                        this.head.prev = null;

                    }else{//如果只有一个节点即头结点
                        this.last = null;//不能忘记否则会发生泄漏

                    }
                }else{
                    cur.prev.next = cur.next;//相同代码提出来
                    if (cur.next != null) {//中间节点
                        cur.next.prev = cur.prev;

                    } else{//尾节点
                        this.last = cur.prev;
                    }
                }
               
                //return;
            }
        }
        cur = cur.next;//进不进if都要走一步
    }

8. 清空双链表

public void clear(){
        while (head != null) {
            Node cur = head.next;
            this.head.next = null;
            this.head.prev = null;
            this.head = cur;
        }
        this.last = null;//最后一个节点还被last引用,要把last置为空
    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值