双链表的实现

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

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();
    }
}

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

now just do it

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值