内容简介: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
- [LeetCode]19. Remove Nth Node From End of List
- 数据结构与算法 | Leetcode 19. Remove Nth Node From End of List
- Leetcode基础刷题之PHP解析(19. Remove Nth Node From End of List)
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Web Designer Idea
梁景红 / 电子工业出版社 / 2006年 / ¥55.00
这是一本以“目的、信息、设计、创意”作为根脉的关于网页视觉的书籍,畅谈的话题从策划到编辑再到设计,从而讨论“我们要建立怎样的站点,并以何种形式完成它”的问题。 全书共分四个部分,分别是网站建设目的,网站信息内容,页面形式设计,网页创作构思。 四部分有机地结合,形成一个统一的整体。“目的”部分以建设网站的目的为主,带领设计师从建站目的的角度,探讨如何抓住首要问题;如何建立网站雏形;如何打开狭隘的、局......一起来看看 《Web Designer Idea》 这本书的介绍吧!