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

查看所有标签

猜你喜欢:

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

MFC编程技巧与范例详解

MFC编程技巧与范例详解

曾凡锋、苗雨 / 清华大学出版社 / 2008-10 / 45.00元

本书集作者多年教学与软件开发经验,通过不同类型的实例详解向读者解读了如何使用MFC进行软件开发,并按实例的复杂度进行分级介绍,以满足不同层次读者的切实需要。. 本书共55个完整实例,均选自作者多年工程应用开发中的案例;内容共分14章,分别为MFC的基本概念、文档和视图、对话框、按钮控件、编辑控件、组合框控件、列表框控件、列表视图控件、树状视图控件、图像、多媒体、GDI与GDI+、网络编程、I......一起来看看 《MFC编程技巧与范例详解》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

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

在线 XML 格式化压缩工具