19. 删除链表的倒数第N个节点

Posted kennyoooo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了19. 删除链表的倒数第N个节点相关的知识,希望对你有一定的参考价值。

19. 删除链表的倒数第N个节点

https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list/

难度 完成日期 耗时 提交次数
中等 2020-1-10 0.5小时 1

问题描述

给定一个链表,删除链表的倒数第 n 个节点,并且返回链表的头结点。

示例:

给定一个链表: 1->2->3->4->5, 和 n = 2.
当删除了倒数第二个节点后,链表变为 1->2->3->5.

解题思路

普通方法

ListNode *removeNthFromEnd(ListNode *head, int n) {
    ListNode *_head = head;
    int length = 1;
    while (head->next != nullptr) {
        length++;
        head = head->next;
    }
    if (n == length) {
        return _head->next;
    }
    head = _head;
    int position = length - n;
    for (int i = 1; i < position; i++) {
        head = head->next;
    }
    head->next = head->next->next;
    return _head;
}

先求出链表长度,再按顺序求出删除链表的实际位置,删除节点,连接到下一个节点。注意判断删除的是否为头节点。

尝试使用一趟扫描实现

ListNode *removeNthFromEnd(ListNode *head, int n) {
    ListNode *_head = head;
    ListNode *end = head;
    for (int i = 0; i < n; i++) {
        end = end->next;
    }
    if (end == nullptr) {
        return _head->next;
    }
    while (end->next != nullptr) {
        head = head->next;
        end = end->next;
    }
    head->next = head->next->next;
    return _head;
}

使用两个指针,分别保存当前遍历位置和 n 个节点后位置,若 n 个节点后已经为最后一个节点,则删除当前遍历位置节点。

以上是关于19. 删除链表的倒数第N个节点的主要内容,如果未能解决你的问题,请参考以下文章

19. 删除链表的倒数第N个节点

19. 删除链表的倒数第N个节点

Lc19_删除链表的倒数第N个节点

LeetCode 19删除链表的倒数第N个节点

Leetcode 19 删除链表的倒数第 N 个节点

代码随想录算法训练营第四天 | 24.两两交换链表中的节点19.删除链表的倒数第N个节点160.相交链表142.环形链表II