Leetcode 探索之链表

Leetcode 探索之链表

[toc]

链表小结

  1. 链表也是一种线性结构。链表可以分为单链表(只有next指针)和双链表(有next指针和prev指针)。一般情况下,使用头结点来表示整个链表。
  2. 链表中的元素所分配的内存不是连续的, 因此必须通过next指针或prev指针进行遍历才能找到指定下标的元素,随机访问的时间复杂度为O(n)。
  3. 在某个位置插入元素,在不考虑遍历到该位置所需的时间的情况下,单链表只需改变next指针,时间复杂度为O(1)。双链表需要修改next和prev指针,时间复杂度也为O(1)。
  4. 对于删除链表中某个位置的元素,同上,单链表由于需要知道前一个结点,因此时间复杂度为O(n)。双链表由于具有prev指针,时间复杂度为O(1)。
  5. 因此,当操作只要是添加和删除时,可以考虑链表,如果以访问为主,则应考虑数组。

做题小结

  1. 链表问题在于理解起来较为抽象,建议通过在草稿纸上进行画图的方式来加深对于链表操作的理解。
  2. 链表中的判断条件要注意空指针错误,在进行任何访问之前要确保已经进行相关的检查。同时应该仔细定义循环结束的条件,防止出现无限循环。
  3. 双指针技巧。快慢指针。
  4. 在遍历链表时,可以直接使用给定的头结点,只访问时不要修改链表。当涉及到修改链表时,最好使用一个哨兵结点作为头结点,可以避免处理头结点为空的相关情况,减少思考的复杂度和出错率。
  5. 当修改链表时,不能想当然,最好是在草稿纸上模拟相关操作,看看修改指针后链表的变化,防止出现循环链表的情况。

链表相关实现

单链表

不带哨兵结点的单链表
class MyLinkedList {
    private int size;
    private ListNode head;

    /**
     * Initialize your data structure here.
     */
    MyLinkedList() {
        size = 0;
    }

    /**
     * Get the value of the index-th node in the linked list. If the index is invalid, return -1.
     */
    public int get(int index) {
        if (index < 0 || index >= size) {
            return -1;
        }
        ListNode cur = head;
        for (int i = 0; i < index; i++) {
            cur = cur.next;
        }
        return cur.val;
    }

    /**
     * Add a node of value val before the first element of the linked list. After the insertion, the new node will be the first node of the linked list.
     */
    public void addAtHead(int val) {
        ListNode cur = new ListNode(val);
        cur.next = head;
        head = cur;
        size++;
    }

    /**
     * Append a node of value val to the last element of the linked list.
     */
    public void addAtTail(int val) {
        if (size == 0) {
            addAtHead(val);
        }
        ListNode tmp = head;
        for (int i = 0; i < size - 1; i++) {
            tmp = tmp.next;
        }
        tmp.next = new ListNode(val);
        size++;
    }

    /**
     * Add a node of value val before the index-th node in the linked list. If index equals to the length of linked list, the node will be appended to the end of linked list. If index is greater than the length, the node will not be inserted.
     */
    public void addAtIndex(int index, int val) {
        if (index == size) {
            addAtTail(val);
        } else if (index <= 0) {
            addAtHead(val);
        } else if (index > 0 && index < size) {
            ListNode tmp = head;
            for (int i = 0; i < index - 1; i++) {
                tmp = tmp.next;
            }
            ListNode add = new ListNode(val);
            add.next = tmp.next;
            tmp.next = add;
            size++;
        }
    }

    /**
     * Delete the index-th node in the linked list, if the index is valid.
     */
    public void deleteAtIndex(int index) {
        if (index >= 0 && index < size) {
            if (index == 0) {
                head = head.next;
                size--;
            } else {
                ListNode cur = head;
                for (int i = 0; i < index; i++) {
                    cur = cur.next;
                }
                ListNode prev = head;
                for (int i = 0; i < index - 1; i++) {
                    prev = prev.next;
                }
                prev.next = cur.next;
                size--;
            }
        }
    }
}
/**
 * Your MyLinkedList object will be instantiated and called as such:
 * MyLinkedList obj = new MyLinkedList();
 * int param_1 = obj.get(index);
 * obj.addAtHead(val);
 * obj.addAtTail(val);
 * obj.addAtIndex(index,val);
 * obj.deleteAtIndex(index);
 */
带哨兵结点的单链表
class MyLinkedList {
    private int size;
    private ListNode head;

    /**
     * Initialize your data structure here.
     */
    MyLinkedList() {
        size = 0;
        head = new ListNode(0);
    }

    /**
     * Get the value of the index-th node in the linked list. If the index is invalid, return -1.
     */
    public int get(int index) {
        if (index < 0 || index >= size) {
            return -1;
        }
        ListNode cur = head;
        for (int i = 0; i <= index; i++) {
            cur = cur.next;
        }
        return cur.val;
    }

    /**
     * Add a node of value val before the first element of the linked list. After the insertion, the new node will be the first node of the linked list.
     */
    public void addAtHead(int val) {
        addAtIndex(0, val);
    }

    /**
     * Append a node of value val to the last element of the linked list.
     */
    public void addAtTail(int val) {
        addAtIndex(size, val);
    }

    /**
     * Add a node of value val before the index-th node in the linked list. If index equals to the length of linked list, the node will be appended to the end of linked list. If index is greater than the length, the node will not be inserted.
     */
    public void addAtIndex(int index, int val) {
        if (index <= 0) {
            index = 0;
        } else if (index > size) return;;
        size++;
        ListNode prev = head;
        for (int i = 0; i < index; i++) {
            prev = prev.next;
        }
        ListNode cur = new ListNode(val);
        cur.next = prev.next;
        prev.next = cur;
    }

    /**
     * Delete the index-th node in the linked list, if the index is valid.
     */
    public void deleteAtIndex(int index) {
        if (index >= 0 && index < size) {
            size--;
            ListNode prev = head;
            for (int i = 0; i < index; i++) {
                prev = prev.next;
            }
            prev.next = prev.next.next;
        }
    }
}

双链表

不使用伪头伪尾的双链表
不使用伪头,伪尾

class ListNode {
    int val;
    ListNode next;
    ListNode prev;

    ListNode(int x) {
        val = x;
        next = null;
        prev = null;
    }
}

class MyLinkedList {
    int size;
    ListNode head;

    /**
     * Initialize your data structure here.
     */
    public MyLinkedList() {
        size = 0;
        head = null;
    }

    /**
     * Get the value of the index-th node in the linked list. If the index is invalid, return -1.
     */
    public int get(int index) {
        if (index < 0 || index >= size) {
            return -1;
        }
        ListNode cur = head;
        for (int i = 0; i < index; i++) {
            cur = cur.next;
        }
        return cur.val;
    }

    /**
     * Add a node of value val before the first element of the linked list. After the insertion, the new node will be the first node of the linked list.
     */
    public void addAtHead(int val) {
        size++;
        ListNode cur = new ListNode(val);
        cur.next = head;
        cur.prev = null;
        if (head != null) {
            head.prev = cur;
        }
        head = cur;
    }

    /**
     * Append a node of value val to the last element of the linked list.
     */
    public void addAtTail(int val) {
        if (head == null) {
            addAtHead(val);
        } else {
            ListNode pre = head;
            while (pre.next != null) {
                pre = pre.next;
            }
            size++;
            ListNode cur = new ListNode(val);
            cur.next = null;
            cur.prev = pre;
            pre.next = cur;
        }
    }

    /**
     * Add a node of value val before the index-th node in the linked list. If index equals to the length of linked list, the node will be appended to the end of linked list. If index is greater than the length, the node will not be inserted.
     */
    public void addAtIndex(int index, int val) {
        if (index <= 0) {
            addAtHead(val);
        } else if (index == size) {
            addAtTail(val);
        } else if (index < size) {
            ListNode pre = head;
            for (int i = 0; i < index - 1; i++) {
                pre = pre.next;
            }
            size++;
            ListNode cur = new ListNode(val);
            cur.next = pre.next;
            cur.prev = pre;
            pre.next = cur;
            cur.next.prev = cur;
        }
    }

    /**
     * Delete the index-th node in the linked list, if the index is valid.
     */
    public void deleteAtIndex(int index) {
        if (index == 0) {
            size--;
            head = head.next;
            if (head != null) {
                head.prev = null;
            }
        } else if (index == size - 1) {
            size--;
            ListNode pre = head;
            for (int i = 0; i < index - 1; i++) {
                pre = pre.next;
            }
            pre.next = null;
        } else if (index > 0 && index < size - 1) {
            size--;
            ListNode pre = head;
            for (int i = 0; i < index - 1; i++) {
                pre = pre.next;
            }
            pre.next = pre.next.next;
            pre.next.prev = pre;
        }
    }
}
使用伪头伪尾的双链表
//使用伪头伪尾
class ListNode {
    int val;
    ListNode next;
    ListNode prev;

    ListNode(int x) {
        val = x;
        next = null;
        prev = null;
    }
}

class MyLinkedList {
    int size;
    ListNode head;
    ListNode tail;

    /**
     * Initialize your data structure here.
     */
    public MyLinkedList() {
        size = 0;
        head = new ListNode(0);
        tail = new ListNode(0);
        head.next = tail;
        tail.prev = head;
    }

    /**
     * Get the value of the index-th node in the linked list. If the index is invalid, return -1.
     */
    public int get(int index) {
        if (index < 0 || index >= size) {
            return -1;
        }
        ListNode cur = head;
        if (index + 1 < size - index) {
            for (int i = 0; i < index + 1; i++) {
                cur = cur.next;
            }
        } else {
            cur = tail;
            for (int i = 0; i < size - index; i++) {
                cur = cur.prev;
            }
        }
        return cur.val;
    }

    /**
     * Add a node of value val before the first element of the linked list. After the insertion, the new node will be the first node of the linked list.
     */
    public void addAtHead(int val) {
        addAtIndex(0, val);
    }

    /**
     * Append a node of value val to the last element of the linked list.
     */
    public void addAtTail(int val) {
        addAtIndex(size, val);
    }

    /**
     * Add a node of value val before the index-th node in the linked list. If index equals to the length of linked list, the node will be appended to the end of linked list. If index is greater than the length, the node will not be inserted.
     */
    public void addAtIndex(int index, int val) {
        if (index <= 0) {
            index = 0;
        }
        if (index <= size) {
            ListNode pre = head;
            if (index  < size - index) {
                for (int i = 0; i < index; i++) {
                    pre = pre.next;
                }
            } else {
                pre = tail;
                for (int i = 0; i < size - index + 1; i++) {
                    pre = pre.prev;
                }
            }
            ListNode cur = new ListNode(val);
            cur.next = pre.next;
            cur.prev = pre;
            cur.next.prev = cur;
            pre.next = cur;
            size++;
        }
    }

    /**
     * Delete the index-th node in the linked list, if the index is valid.
     */
    public void deleteAtIndex(int index) {
        if (index >= 0 && index < size) {
            ListNode pre = head;
            if (index < size - index) {
                for (int i = 0; i < index; i++) {
                    pre = pre.next;
                }
            } else {
                pre = tail;
                for (int i = 0; i < size - index + 1; i++) {
                    pre = pre.prev;
                }
            }
            pre.next = pre.next.next;
            pre.next.prev = pre;
            size--;
        }
    }
}

题目索引

141环形链表(easy)

快慢指针,类似跑步,快的总能追上慢的。

142环形链表2(medium)

快慢指针,注意各变量间的数量关系即可,通过画图理解。

160相交链表(easy)

设相交部分长度为c,则a+c+b = b+c+a。

要保留链表结尾的NULL,不能修改链表,否则链表被改变为循环链表,造成无限循环,应该以访问到null作为更改的标志,而不能真正修改链表。

19删除链表的倒数第N个节点(medium)

快指针快N布,若N大于链表长度,表示删除第一个结点。

206反转链表(easy)

交换,递归,迭代。

203移除链表元素(easy)

递归+迭代(哨兵结点)

328奇偶链表(medium)

234回文链表(easy)

反转后遍历

21合并两个有序链表(easy)

递归+迭代

2两数相加(medium)

模拟

430扁平化多级双向链表(medium)

转为二叉树进行遍历

138复制带随机指针的链表(medium)

DFS,使用HashMap。

61旋转链表(medium)

模拟,根据数学关系找到新的头和新的结尾。

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