双向的链表


双向链表的好处:

找到一个节点,就可以找到他的前一个节点后后一个节点。

单链表 找到一个节点只能找到后一节点。

MyLinkedList

package demo;

import java.util.List;

public class MyLinkedList {
    //LinkedList底层就是一个双向链表,我们来实现一个双向链表。
    static class LinkList{
        public LinkList prev;
        public LinkList next;
        public int val;

        public LinkList(int val){
            this.val = val;
        }
    }
    public LinkList head;
    public LinkList tail;
    /**
     头插法*/
    /*
    * 思路:
    * 新节点的next为head;
    * head的prev为新节点;
    * 新节点的prev为null
    * head指向新节点
    * 最后考虑一下特殊情况
    * */
    public void addFirst(int adta){
        LinkList node = new LinkList(adta);
        if(head == null){
            this.head = node;
            this.tail = node;
        }else{
            node.next = head;
            head.prev = node;
            head = node;
        }
    }
    /**
     * 尾插法*/
    /*
    * 思路:
    * tail的next是node
    * node的prev是tail
    * tail指向新节点
    * 考虑一下特殊情况
    * */
    public void addLast(int adta){
        LinkList node = new LinkList(adta);
        if(tail == null){
            this.head = node;
            this.tail = node;
        }else{
            tail.next = node;
            node.prev = tail;
            tail = node;
        }
    }
    /**
     * 任意位置插入第一个数据节点是0*/
    /*
    * 思路:
    * 判断index是否合法(index不可以小于零,不可以隔着插)
    * 因为是双向链表,所以找到待查位置两节点的任意一个即可
    * 假设是前一个:就先别动前一个的next因为会找不到后面一个
    * 假设是后一个:就先别动后一个的prev因为会找不到前面一个
    * 要修改的值是前一个的next;后一个的prev;node的prev和 next
    * 考虑一下特殊情况
    * */
    public void addIndex(int index, int data){
        if(index < 0 || index > this.size()){
            throw new IndexException("下标范围异常");
        }
        if(index == 0){
            addFirst(data);
            return;
        }
        if(index == size()){
            addLast(data);
            return;
        }
        LinkList node = new LinkList(data);
        LinkList cur = this.head;
        for (int i = 0; i < index-1; i++) {
            cur = cur.next;
        }
        node.prev = cur;
        node.next = cur.next;
        cur.next.prev = node;
        cur.next = node;
    }

    /*
    * 求链表的长度*/
    public int size(){
        LinkList cur = this.head;
        int count = 0;
        while(cur != null){
            count++;
            cur = cur.next;
        }
        return count;
    }

    /**
     * 查找是否包含关键字key是否在单链表当中*/

    /*
    * 遍历一下链表,有的话,就返回true
    * 判断一下特殊情况
    * */
    public boolean contains(int date){
        LinkList cur = this.head;
        while(cur != null){
            if(cur.val == date){
                return true;
            }
            cur = cur.next;
        }
        return false;
    }

    /**
     * 删除第一次出现关键字为key的节点*/
    /**
     * 思路:
     * 找到你要删除的节点,
     * 前面节点的next指向后面的节点
     * 后面的节点的prev指向前面的节点
     * 考虑一下特殊情况
     *
     */
    public void remove(int key){
        if(this.head == null){
            return;
        }
        LinkList cur = this.head;
        while(cur != null){
            if(cur.val == key){
                //如果是第一个节点
                if(cur == head){
                   head = head.next;
                    //判断只有一个节点的情况
                   if(head == null){
                       tail = null;//tail不置为空。一直回收不了
                   }else {
                       head.prev = null;
                   }
                }else{
                    cur.prev.next = cur.next;//只要不是第一个节点都可以使用这条
                    if(cur.next != null){ //中间节点
                        cur.next.prev = cur.prev;
                    }else{ //尾节点
                        tail = cur.prev;
                    }
                }
                return;
            }
            cur = cur.next;
        }

    }

    /**
     * 删除所有值为key的节点
     * 学习
     */
    public void removeAll(int key){
        if(head == null){
            return;
        }
        LinkList cur = head;
        while (cur != null){
            if(cur.val == key){
                if(cur == head){
                    head = head.next;
                    if(head== null){
                        tail = null;
                    }else {
                        head.prev = null;
                    }

                }else {
                    cur.prev.next = cur.next;
                    if(cur.next != null){
                        cur.next.prev = cur.prev;
                    }else {
                        tail = cur.prev;
                    }
                }
            }
            cur = cur.next;
        }
    }

    /**
     * 删除所有值为key的节点
     * 自写 有些繁杂
     */
    public void removeAll1(int key){
        if(this.head == null){
            return;
        }

        LinkList cur = this.head;
        while (cur != null){
            if (cur.val == key){
                if(cur.prev == null && cur.next == null){
                    head = tail = null;
                }else if(cur.prev == null){
                    cur.next.prev = null;
                    head = head.next;

                }else if(cur.next == null){
                    cur.prev.next = null;
                    cur = cur.prev;
                    tail = cur;

                }else{
                    cur.prev.next = cur.next;
                    cur.next.prev = cur.prev;
                }
            }
            cur = cur.next;
        }
    }
    /**
     * 打印链表*/

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

    /**
     * 链表置空*/
    public void clear(){
        LinkList cur = head;
        while (cur != null){
            LinkList temp = cur.next;
            cur.next = null;
            cur.prev = null;
            cur = temp;
        }
        head = null;
        tail = null;
        //最后这一步不要忘了
    }


}

LinkedList的构造

LinkedList() 无参构造
public LinkedList(Collection<? extends E> c) 使用其他集合容器中元素构造List

LinkedList的常用方法

boolean add(E e) //尾插 e
void add(int index, E element) //将 e 插入到 index 位置
boolean addAll(Collection<? extends E> c) //尾插 c 中的元素
E remove(int index) //删除 index 位置元素
boolean remove(Object o) //删除遇到的第一个 o
E get(int index) //获取下标 index 位置元素
E set(int index, E element) //将下标 index 位置元素设置为 element
void clear() //清空
boolean contains(Object o) //断 o 是否在线性表中
int indexOf(Object o) //返回第一个 o 所在下标
int lastIndexOf(Object o) //返回最后一个 o 的下标
List<E> subList(int fromIndex, int toIndex) //截取部分 list

LinkedList的遍历

LinkedList<Integer> list = new LinkedList<>();
        list.add(1);
        list.add(2);//尾插
        list.add(3);
        list.add(4);
        list.add(5);
        list.add(0,10);
//直接打印也可以,因为重写了toString
 System.out.println(list);

// foreach遍历
        for (int x: list) {
            System.out.print(x+" ");
        }
        System.out.println();

// 使用迭代器遍历---正向遍历
        ListIterator<Integer> it = list.listIterator();
        while (it.hasNext()){
            System.out.print(it.next()+" ");
        }
        System.out.println();

// 使用反向迭代器---反向遍历
        ListIterator<Integer> its = list.listIterator(list.size()); //注意这个地方有个长度大小
        while (its.hasPrevious()){
            System.out.print(its.previous()+" ");
        }
        System.out.println();

ArrayList和LinkedList的区别

在这里插入图片描述

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

terrychen.hacker

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

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

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

打赏作者

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

抵扣说明:

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

余额充值