[LeetCode]Remove Nth Node From End of List

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

内容简介: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》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

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

Spring技术内幕

Spring技术内幕

计文柯 / 机械工业出版社 / 2010-1-1 / 55.00元

内容简介: 本书是Spring领域的问鼎之作,由业界拥有10余年开发经验的资深Java专家亲自执笔!Java开发者社区和Spring开发者社区一致强烈推荐。 国内第一本基于Spring3.0的著作,从源代码的角度对Spring的内核和各个主要功能模块的架构、设计和实现原理进行了深入剖析。你不仅能从木书中参透Spring框架的优秀架构和设计思想,而且还能从Spring优雅的实现源码中一窥......一起来看看 《Spring技术内幕》 这本书的介绍吧!

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

MD5 加密
MD5 加密

MD5 加密工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具