双向链表java实现

双向链表其实就比单链表多了一个前驱而已(用来存放上一个节点的位置)

在这里插入图片描述
但要注意的是头结点的prev为null,最后一个结点的next域为null。
在这里插入图片描述
实现代码如下

public class ListNode {
    public int val;
    public ListNode next;
    public ListNode prev;
    //alt+insert   ->   Constructor
    public ListNode(int val) {
        this.val = val;
    }
}
public class DoubleLinkedList {

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

    //头插法
    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;
            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;
        }
    }
    //任意位置插入,第一个数据节点为0号下标
    public void addIndex(int pos,int data) {
         if(pos<0||pos>size())
         {
             return ;
         }
         if(pos==0)
         {
             addFirst(data);
             return ;
         }
         if(pos==size())
         {
             addLast(data);
         }
         ListNode cur=this.head;
         while(pos!=0)
         {
             cur=cur.next;
             pos--;
         }
         ListNode node=new ListNode(data);
         node.next=cur;
         node.prev=cur.prev;
         cur.prev.next=node;
         cur.prev=node;
    }

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

    public ListNode findNode(int key) {
        ListNode cur = this.head;
        while (cur != null) {
            if(cur.val == key) {
                return cur;
            }
            cur = cur.next;
        }
        return null;
    }

    //删除第一次出现关键字为key的节点
    public void remove(int key) {
        ListNode cur = this.findNode(key);
        if(cur == null) {
            return;
        }
        //
        if(cur == this.head) {
            this.head=this.head.next;
            this.head.prev = null;
            return;
        }
        if(cur == this.last) {
            cur.prev.next=null;
            this.last=this.last.prev;
            return;
        }
        cur.prev.next=cur.next;
        cur.next.prev=cur.prev;
    }


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

    public void clear() {
        this.head = null;
        this.last = null;
    }

    /*public void clear2() {
        ListNode cur = this.head;
        while (cur != null) {
            ListNode curNext = cur.next;
            cur.next = null;
            cur.prev = null;
            cur = curNext;
        }
        this.last = null;
        this.head = null;
    }*/
}
public class Test {

    public static void main(String[] args) {
        DoubleLinkedList doubleLinkedList = new DoubleLinkedList();
        //头插
        doubleLinkedList.addFirst(1);
        doubleLinkedList.addFirst(2);
        doubleLinkedList.addFirst(3);
        doubleLinkedList.addFirst(3);

        //尾插
        doubleLinkedList.addLast(4);
        doubleLinkedList.addLast(5);

        //任意位置插入
        doubleLinkedList.addIndex(3,666);
        doubleLinkedList.display();//3 3 2 1 666 4 5
        //是否包含某个元素
        System.out.println(doubleLinkedList.contains(6));
        //长度
        System.out.println(doubleLinkedList.size());
        //删除元素
        doubleLinkedList.removeAllKey(3);
        doubleLinkedList.display();// 2 1 666 4 5
        doubleLinkedList.clear();
        System.out.println("==================");
    }
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值