[LeetCode]Remove Nth Node From End of List

栏目: 编程工具 · 发布时间: 7年前

内容简介:Given a linked list, remove theGivenCould you do this in one pass?

原题

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

Example:

Given linked list: <strong>1->2->3->4->5</strong>, and <strong><em>n</em> = 2</strong>.

After removing the second node from the end, the linked list becomes <strong>1->2->3->5</strong>.

Note:

Given n will always be valid.

Follow up:

Could you do this in one pass?

思路

首先,明确题意。题目给出了一个只有后继(successor),没有前驱(predecessor)的一个单向链表。要求删除倒数第n个节点。

那么,思路自然会想到的就是在一次遍历就搞定题目要求。所以,我们自然要在遍历的过程中保存一些状态值。那么,这个状态值无非就是目标节点(要删除节点,即第n个节点)的 前驱 。这样,才能将目标节点干掉。

那么,在遍历时,达到目标节点前驱的条件(时刻)是什么?即

cur_l - n > 0

`cur_l`指的是当前遍历的节点个数(即长度),n即题目指定的入参。细细品味,即可明白。

代码

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* removeNthFromEnd(ListNode* head, int n) {
        auto cur_node = head, search_node = head;
        int cur_l = 1;
        while (cur_node->next != NULL) {
            cur_node = cur_node->next;
            if (++cur_l - n > 1) search_node = search_node->next;
        }
        if (cur_l - n > 0) {
            search_node->next = (search_node->next == NULL) ? NULL : search_node->next->next;
        } else {
            head = head->next;
        }
        return head;
    }
};

原题: https://leetcode.com/problems/remove-nth-node-from-end-of-list/description/

文章来源: 胡小旭 => [LeetCode]Remove Nth Node From End of List


以上所述就是小编给大家介绍的《[LeetCode]Remove Nth Node From End of List》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Visual C#从入门到精通(第8版)

Visual C#从入门到精通(第8版)

夏普 (John Sharp) / 周靖 / 清华大学出版社 / 2016-6-1

《Visual C#从入门到精通(第8版)》共27章,结构清晰,叙述清楚。所有练习均在Visual Studio 2015简体中文版上进行过全面演练。无论是刚开始接触面向对象编程的新手,还是打算迁移到C#的C、C++或Java程序员,都可以从《Visual C#从入门到精通(第8版)》汲取到新的知识。迅速掌握C#编程技术。一起来看看 《Visual C#从入门到精通(第8版)》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具