内容简介: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)
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Java RESTful Web Service实战
韩陆 / 机械工业出版社 / 2014-10-1 / 69.00
国内首本完整、深度地讲解如何基于Java标准规范实现REST风格的Web服务的专著,阿里巴巴Java技术专家12年开发经验结晶,3位业内著名技术专家联袂推荐!不仅深刻解读了最新的JAX-RS标准和其API设计,以及Jersey的使用要点和实现原理,而且系统讲解了REST的基本理论,更重要的是从实践角度深度讲解了如何基于Jersey实现完整的、安全的、高性能的REST式的Web服务。 《Jav......一起来看看 《Java RESTful Web Service实战》 这本书的介绍吧!