LeetCode19. Remove Nth Node From End of List

文章目录

一、题目

Given the head of a linked list, remove the nth node from the end of the list and return its head.

Example 1:

Input: head = [1,2,3,4,5], n = 2

Output: [1,2,3,5]

Example 2:

Input: head = [1], n = 1

Output: []

Example 3:

Input: head = [1,2], n = 1

Output: [1]

Constraints:

The number of nodes in the list is sz.

1 <= sz <= 30

0 <= Node.val <= 100

1 <= n <= sz

Follow up: Could you do this in one pass?

二、题解

cpp 复制代码
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode() : val(0), next(nullptr) {}
 *     ListNode(int x) : val(x), next(nullptr) {}
 *     ListNode(int x, ListNode *next) : val(x), next(next) {}
 * };
 */
class Solution {
public:
    ListNode* removeNthFromEnd(ListNode* head, int n) {
        ListNode* dummyHead = new ListNode(0);
        dummyHead->next = head;
        ListNode* fast = dummyHead;
        ListNode* slow = dummyHead;
        n++;
        while(n-- && fast != nullptr){
            fast = fast->next;
        }
        while(fast != nullptr){
            fast = fast->next;
            slow = slow->next;
        }
        slow->next = slow->next->next;
        return dummyHead->next;
    }
};
相关推荐
2401_881244407 分钟前
P3808 AC 自动机(简单版)
算法
进击的圆儿26 分钟前
【学习笔记05】C++11新特性学习总结(下)
c++·笔记·学习
Jayden_Ruan31 分钟前
C++十进制转二进制
数据结构·c++·算法
Haooog1 小时前
98.验证二叉搜索树(二叉树算法题)
java·数据结构·算法·leetcode·二叉树
小何好运暴富开心幸福1 小时前
C++之日期类的实现
开发语言·c++·git·bash
老赵的博客2 小时前
c++ 是静态编译语言
开发语言·c++
Macre Aegir Thrym2 小时前
MINIST——SVM
算法·机器学习·支持向量机
Young_Zn_Cu3 小时前
LeetCode刷题记录(持续更新中)
算法·leetcode
天选之女wow3 小时前
【代码随想录算法训练营——Day31】贪心算法——56.合并区间、738.单调递增的数字、968.监控二叉树
算法·leetcode·贪心算法
lixinnnn.3 小时前
贪心:火烧赤壁
数据结构·c++·算法