数据结构之链表

一、概念:

链表是一种物理存储结构上非连续、非顺序的存储结构,数据元素的逻辑顺序是通过链表中的引用链接次序实现的 。

二、分类:

在这里插入图片描述

三、相关操作

//单向非循环不带头链表
//链表的插入删除(头尾)打印

//前驱 prev previous
//后继 next
class Node{//盒子
    int val;//盒子左面的值value/element
    Node next;//盒子的右面:结点的后继(存着下一个引用)
    //如果next == null;表示node是最后一个节点

    //写构造方法,将val传进去:节省时间,不用每次都写
    Node (int val){
        this.val = val;
        this.next = null;
    }

    //打印
    public String toString() {

        return String.format("Node(%d)", val);
    }
}

public class MyLinkedList {
    public static void main(String[] args) {
        Node head = null;
        //head(是一个引用)表示链表第一个节点,通过第一个结点,
        // 就可以找到完整的链表,
        // 所以链表的第一个结点往往代表整个链表
        //空的链表就是一个节点都没有的链表
        //也就没有第一个结点
        //也就是head = null表示第一个结点不存在
        // 表示整个链表为空

        //头插(空链表)
        /*
        int val = 0;
        //1、结点
        Node node =new Node(val);
        //2、让原来的head成为node的下一个结点
        node.next = head;
        //3、更新
        head = node;
        */
        head = pushFront(head, 0);
        head = pushFront(head, 1);
        head = pushFront(head, 2);

        //打印
        print(head);

        //尾删
        head = popFront(head);
        print(head);	// 1 0

        head = pushBack(head, 10);
        head = pushBack(head, 20);
        head = pushBack(head, 30);
        print(head);	// 1 0 10 20 30
        head = popBack(head);
        head = popBack(head);
        head = popBack(head);
        head = popBack(head);
        head = popBack(head);

        head = popBack(head);	// 报错
        print(head);		// 空

        head = pushBack(head, 100);
        print(head);		// 100

        head.next = new Node(2);
        head.next.next = new Node(3);
        head.next.next.next = new Node(4);

        Node pos = head.next.next;
        pushAfter(pos, 100);

        // 1, 2, 3, 100, 4
    }

    //在pos位置后插入val
    private static void pushAfter (Node pos,int val){
        Node node = new Node(val);

        node.next = pos.next;
        pos.next = node;
    }

    //删除指定位置pos后的值
    private static void popAfter (Node pos){

        pos.next = pos.next.next;
    }

    // 打印
    private static void print(Node head) {
        System.out.println("打印链表:");
        Node cur = head;
        while (cur != null){
            System.out.print(cur + " --> ");
            cur = cur.next;
        }
        System.out.println("null");
    }

    // 头插
    // head: 原来的第一个结点
    // val:要插入的值
    // 返回:新的第一个结点
    private static Node pushFront(Node head, int val) {
        // 1. 装一个结点
        Node node = new Node(val);
        // 2. 让原来的 head 成为 node 的下一个结点
        node.next = head;
        // 3. 更新第一个结点的引用
        return node;
    }

    //尾插
    private static Node pushBack(Node head, int val) {
        //一、空链表
        //让新的结点成为第一个结点
        //二、非空链表
        //1、如果没在结点中,装到结点里
        //2、让新结点的next = null   构造方法中已经让.next = null了
        //3、找到倒数第一个结点(子问题),找到.next==null的结点
        //4、让原来的倒数第一个结点的下一个为新结点
        Node node = new Node(val);
        if (head == null) {
            return node;
        } else {
            Node last = head;
            while (last.next != null) {
                last = last.next;
            }
            last.next = node;

            return head;
        }
    }
        //头删
        private static Node popFront(Node head) {
            if (head == null) {
                System.err.println("空链表无法删除");
                return null;
            }

            // 原来第一个结点,会因为没有引用指向而被回收
            return head.next;
        }

        //尾删
        private static Node popBack(Node head) {
            if (head == null) {
                System.err.println("空链表无法删除");
                return null;
            }

            //1、找到倒数第二个结点,
            // 让倒数第二个结点的next = null
            // 原来的最后一个结点因为没有引用指向而被回收
            //只有一个结点,直接置空
            if (head.next == null) {
                return null;
            } else {
                Node lastSecond = head;
                while (lastSecond.next.next != null) {
                    lastSecond = lastSecond.next;
                }

                lastSecond.next = null;
                return head;
            }

        }
}

//双向非循环不带头链表
//双向不循环不带头单链表
class Node {
    int val;
    Node next = null;   // 指向后继结点,最后一个结点的 next == null
    Node prev = null;   // 指向前驱结点,第一个结点的 prev == null

    Node(int val) {
        this.val = val;
    }
}
public class MyLinkedList2 {
    private Node head = null;
    private Node last = null;
    private int size = 0;

    public void pushFront(int val) {
        Node node = new Node(val);
        node.next = head;
        if (head != null) {
            head.prev = node;
        } else {
            last = node;
        }
        head = node;

        size++;
    }

    public void popFront() {
        if (size <= 0) {
            System.out.println("无法对空链表做删除");
            return;
        }

        head = head.next;
        if (head != null) {
            head.prev = null;
        } else {
            last = null;
        }
        size--;
    }

    void pushBack(int val) {
        Node node = new Node(val);
        if (last == null) {
            head = node;
        } else {
            last.next = node;
        }
        node.prev = last;
        last = node;

        size++;
    }

    void popBack() {
        if (size <= 0) {
            System.out.println("无法对空链表做删除");
            return;
        }

        if (last == head) {
            head = last = null;
        } else {
            last.prev.next = null;
            last = last.prev;
        }

        size--;
    }

    public void add(int index, int val) {
        if (index < 0 || index > size) {
            System.out.println("下标错误");
            return;
        }
        if (index == 0) {
            pushFront(val);
        } else if (index == size) {
            pushBack(val);
        } else {
            Node pos = getNode(index);
            Node node = new Node(val);
            node.prev = pos.prev;
            node.next = pos;
            node.prev.next = node;
            node.next.prev = node;

            size++;
        }
    }

    public void remove(int index) {
        if (size <= 0) {
            System.out.println("无法对空链表做删除");
            return;
        }

        if (index < 0 || index >= size) {
            System.out.println("下标错误");
            return;
        }

        if (index == 0) {
            popFront();
        } else if (index == size - 1) {
            popBack();
        } else {
            Node pos = getNode(index);
            pos.prev.next = pos.next;
            pos.next.prev = pos.prev;
            size--;
        }
    }

    // 代码的复用性
    private Node getNode(int index) {
        // 不需要校验 index 的合法性
        // 因为使用者 add 和 remove 已经做过类似工作了
        int backwardIndex = size - index - 1;
        Node pos;
        if (index <= backwardIndex) {
            pos = head;
            for (int i = 0; i < index; i++) {
                pos = pos.next;
            }
        } else {
            pos = last;
            for (int i = 0; i < backwardIndex; i++) {
                pos = pos.prev;
            }
        }

        return pos;
    }

    public int size() {
        return size;
    }

    public boolean isEmpty() {
        return size == 0;
    }

    public void reset() {
        head = last = null;
        size = 0;
    }

    public static void main(String[] args) {
        MyLinkedList list = new MyLinkedList();
        list.pushFront(1);
        list.pushFront(2);
        list.pushFront(3);
        System.out.println("3 2 1");
        list.popFront();
        list.popFront();
        list.popFront();
        System.out.println("");
        list.pushBack(10);
        list.pushBack(20);
        list.pushBack(30);
        System.out.println("10 20 30");
        list.popBack();
        list.popBack();
        list.popBack();
        System.out.println("");
        list.pushBack(1);
        list.pushBack(2);
        list.pushBack(3);
        list.pushBack(4);
        list.pushBack(5);
        System.out.println("1 2 3 4 5");
        list.add(1, 10);
        System.out.println("1 10 2 3 4 5");
        list.add(5, 20);
        System.out.println("1 10 2 3 4 20 5");
        list.remove(1);
        System.out.println("1 2 3 4 20 5");
        list.remove(4);
        System.out.println("1 2 3 4 5");
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值