Given a linked list, remove the nth node from the end of list and return its head.
For example,
Given linked list: 1->2->3->4->5, and n = 2. After removing the second node from the end, the linked list becomes 1->2->3->5.
Note:
Given n will always be valid.
Try to do this in one pass.
题目说n总是有效的,这就方便了很多。这里新建了一个结点,如果限定不能有额外空间,就要另做处理了。AC
/**
* 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) {
if(head==NULL) return NULL;
ListNode* p=head,*q=head;
while(n--)
{
q=q->next;
}
ListNode* pre=(ListNode*)malloc(sizeof(ListNode));
pre->next=head;
while(q!=NULL)
{ pre=pre->next;
p=p->next; //p指向被删结点
q=q->next;
}
if(p==head)
{
head=head->next; //如果被删除的是头指针,要特殊处理
}
pre->next=p->next;
delete p;
p=NULL;
return head;
}
};