代码拉取完成,页面将自动刷新
/*
* @lc app=leetcode.cn id=19 lang=cpp
*
* [19] 删除链表的倒数第 N 个结点
*/
// @lc code=start
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
ListNode* removeNthFromEnd(ListNode* head, int n) {
ListNode *first = head;
ListNode *second = head;
int i = 0;
for(i=0;i<n && second;i++){
second = second->next;
}
if(!second) //删除头结点
{
head = head->next;
return head;
}
while(second){
if(!second->next)
break;
second = second->next;
first = first->next;
}
//first 下一个节点为要删除的节点
first->next = first->next->next;
return head;
}
};
// @lc code=end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。