手敲数据结构——链表

链表的特点

  • 数据存储在节点(Node)中
  • 优点:真正的动态,不需要处理固定容量的问题
  • 缺点:丧失了随机访问的能力

数组和链表的对比

  • 数组最大的优点:支持快速查询
  • 链表最大的优点:动态

实现

public class LinkedList<E> {

    private class Node {
        public E e;
        public Node next;

        public Node(E e, Node next) {
            this.e = e;
            this.next = next;
        }

        public Node(E e) {
            this(e, null);
        }

        public Node() {
            this(null, null);
        }

        @Override
        public String toString() {
            return e.toString();
        }
    }

    //使用虚拟头节点 使代码更优雅
    private Node dummyHead;
    int size;

    public LinkedList() {
        dummyHead = new Node();
        size = 0;
    }

    //获取链表中的元素个数
    public int getSize() {
        return size;
    }

    //返回链表是否为空
    public boolean isEmpty() {
        return size == 0;
    }

    //在链表指定索引添加新的元素e
    public void add(int index, E e) {
        if (index < 0 || index > size) throw new IllegalArgumentException("Add fail,Illegal index");

        Node pre = dummyHead;
        for (int i = 0; i < index; i++) {
            pre = pre.next;
        }
        pre.next = new Node(e, pre.next);
        //等价于
        //Node node = new Node(e);
        //node.next = pre.next;
        //pre.next = node;
        size++;
    }

    //在链表头添加新的元素e
    public void addFirst(E e) {
        add(0, e);
    }

    //在链表尾部添加新的元素e
    public void addLast(E e) {
        add(size, e);
    }

    //获取链表的第index个位置的元素
    public E get(int index) {
        if (index < 0 || index > size) throw new IllegalArgumentException("Add fail,Illegal index");
        Node cur = dummyHead.next;
        for (int i = 0; i < index; i++) {
            cur = cur.next;
        }
        return cur.e;
    }

    //获取链表的第一个元素
    public E getFirst() {
        return get(0);
    }

    //获取链表的最后一个元素
    public E getLast() {
        return get(size - 1);
    }

    //修改链表的第index个位置的元素为e
    public void set(int index, E e) {
        if (index < 0 || index > size) throw new IllegalArgumentException("Add fail,Illegal index");

        Node cur = dummyHead.next;
        for (int i = 0; i < index; i++) {
            cur = cur.next;
        }
        cur.e = e;
    }

    //查找链表中是否有元素e
    public boolean contains(E e) {
        Node cur = dummyHead.next;
        while (cur != null) {
            if (cur.e.equals(e))
                return true;
            cur = cur.next;
        }
        return false;
    }

    //从链表中删除index位置的元素,放回删除的元素
    public E remome(int index) {
        if (index < 0 || index > size) throw new IllegalArgumentException("Add fail,Illegal index");
        Node pre = dummyHead;
        for (int i = 0; i < index; i++) {
            pre = pre.next;
        }
        Node delNode = pre.next;
        pre.next = delNode.next;
        delNode.next = null;
        size--;
        return delNode.e;
    }

    //从链表中删除第一个元素
    public E remomeFirst() {
        return remome(0);
    }

    //从链表中删除最后个元素
    public E remomeLast() {
        return remome(size - 1);
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        Node cur = dummyHead.next;
        while (cur != null) {
            sb.append(cur).append("-->");
            cur = cur.next;
        }
        sb.append("NULL");
        return sb.toString();
    }
}

测试结果

 public static void main(String[] args) {
        LinkedList<Integer> linkedList = new LinkedList<>();
        for (int i = 0; i < 5; i++) {
            linkedList.addFirst(i);
            System.out.println(linkedList.toString());
        }
        linkedList.add(2, 8);
        System.out.println(linkedList.toString());

        linkedList.remome(2);
        System.out.println(linkedList.toString());

        linkedList.remomeFirst();
        System.out.println(linkedList.toString());

        linkedList.remomeLast();
        System.out.println(linkedList.toString());
    }
    
//0-->NULL
//1-->0-->NULL
//2-->1-->0-->NULL
//3-->2-->1-->0-->NULL
//4-->3-->2-->1-->0-->NULL
//4-->3-->8-->2-->1-->0-->NULL
//4-->3-->2-->1-->0-->NULL
//3-->2-->1-->0-->NULL
//3-->2-->1-->NULL
    

链表的时间复杂度分析

操作 时间复杂度
addFirst(E e) O(1)
addLast(E e) O(n)
add(int index, E e) O(n/2) = O(n)
remomeFirst() O(1)
remomeLast() O(n)
remome(int index) O(n/2) = O(n)
contains(E e) O(n)

使用链表实现栈

public interface Stack<E> {

    int getSize();
    boolean isEmpty();
    void push(E e);
    E pop();
    //栈顶元素
    E peek();

}


public class LinkedListStack<E> implements Stack<E> {

    private LinkedList<E> list;

    public LinkedListStack() {
        list = new LinkedList<>();
    }

    @Override
    public int getSize() {
        return list.getSize();
    }

    @Override
    public boolean isEmpty() {
        return list.isEmpty();
    }

    @Override
    public void push(E e) {
        list.addFirst(e);
    }

    @Override
    public E pop() {
        return list.remomeFirst();
    }

    @Override
    public E peek() {
        return list.getFirst();
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("Stack: top  ");
        sb.append(list);
        return sb.toString();
    }
}

测试结果

 public static void main(String[] args) {
        LinkedListStack<Integer> stack = new LinkedListStack<>();
        for (int i = 0; i < 5; i++) {
            stack.push(i);
            System.out.println(stack);
        }
        stack.pop();
        System.out.println(stack);
    }

Stack: top  0-->NULL
Stack: top  1-->0-->NULL
Stack: top  2-->1-->0-->NULL
Stack: top  3-->2-->1-->0-->NULL
Stack: top  4-->3-->2-->1-->0-->NULL
Stack: top  3-->2-->1-->0-->NULL

使用链表实现队列

之前实现的链表,表首添加元素的时间复杂度为O(1),删除元素的时间复杂度为O(n)
对链表进行优化,使删除的时间复杂度为O(1)

public interface Queue<E> {

    int getSize();

    boolean isEmpty();

    void enqueue(E e);

    E dequeue();

    E getFront();
}

public class LinkedListQueue<E> implements Queue<E> {

    private class Node {
        public E e;
        public Node next;

        public Node(E e, Node next) {
            this.e = e;
            this.next = next;
        }

        public Node(E e) {
            this(e, null);
        }

        public Node() {
            this(null, null);
        }

        @Override
        public String toString() {
            return e.toString();
        }
    }

    private Node head, tail;
    private int size;

    public LinkedListQueue() {
        head = null;
        tail = null;
        size = 0;
    }

    @Override
    public int getSize() {
        return size;
    }

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

    @Override
    public void enqueue(E e) {
        //tail为空的时候意味着head也为空 队列没有元素
        if (tail == null) {
            tail = new Node(e);
            head = tail;
        } else {
            tail.next = new Node(e);
            tail = tail.next;
        }
        size++;
    }

    @Override
    public E dequeue() {
        if (isEmpty()) throw new IllegalArgumentException("Cannot dequeue from a empty queue");
        //拿到head节点  将head节点指向下一个元素 将返回的节点的next指空
        Node retNode = head;
        head = head.next;
        retNode.next = null;
        //如果head节点为空 说明队列为空 head和tail都为空
        if (head == null)
            tail = null;
        size--;
        return retNode.e;
    }

    @Override
    public E getFront() {
        if (isEmpty()) throw new IllegalArgumentException("Queue is empty");
        return head.e;
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("Queue: front ");
        Node cur = head;
        while (cur != null) {
            sb.append(cur + "-->");
            cur = cur.next;
        }
        sb.append("NULL tail");
        return sb.toString();
    }
}

测试结果

   public static void main(String[] args) {
        LinkedListQueue<Integer> queue = new LinkedListQueue();
        for (int i = 0; i < 10; i++) {
            queue.enqueue(i);
            System.out.println(queue);

            if (i % 3 == 2) {
                queue.dequeue();
                System.out.println(queue);
            }
        }
    }

Queue: front 0-->NULL tail
Queue: front 0-->1-->NULL tail
Queue: front 0-->1-->2-->NULL tail
Queue: front 1-->2-->NULL tail
Queue: front 1-->2-->3-->NULL tail
Queue: front 1-->2-->3-->4-->NULL tail
Queue: front 1-->2-->3-->4-->5-->NULL tail
Queue: front 2-->3-->4-->5-->NULL tail
Queue: front 2-->3-->4-->5-->6-->NULL tail
Queue: front 2-->3-->4-->5-->6-->7-->NULL tail
Queue: front 2-->3-->4-->5-->6-->7-->8-->NULL tail
Queue: front 3-->4-->5-->6-->7-->8-->NULL tail
Queue: front 3-->4-->5-->6-->7-->8-->9-->NULL tail
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,222评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,455评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,720评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,568评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,696评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,879评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,028评论 3 409
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,773评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,220评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,550评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,697评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,360评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,002评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,782评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,010评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,433评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,587评论 2 350

推荐阅读更多精彩内容

  • 一、线性表的顺序存储设计与实现(顺序表) 1.1 顺序存储结构的设计原理概要 顺序存储结构底层是利用数组来实现的,...
    千涯秋瑟阅读 1,420评论 2 4
  • 1 序 2016年6月25日夜,帝都,天下着大雨,拖着行李箱和同学在校门口照了最后一张合照,搬离寝室打车去了提前租...
    RichardJieChen阅读 5,083评论 0 12
  • 一些概念 数据结构就是研究数据的逻辑结构和物理结构以及它们之间相互关系,并对这种结构定义相应的运算,而且确保经过这...
    Winterfell_Z阅读 5,705评论 0 13
  • 事物在一天天变化着,同样人也在不断的变动着,旧的走了,新的又来,周而复始,没有永远的相聚,也没有永远的别离,反...
    半抹晴语诗阅读 219评论 0 0
  • 出轨这个话题屡见不鲜,但是关于恋爱中总遇到对方出轨,总被戴绿帽子的人 不知道有没有见过的。 一杯清茶,一把浮扇,一...
    醉流年yhm阅读 297评论 5 2