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个给节点,从尾部书的节点无法知道节点的具体情况,我们可以定义两个指针指向这个链表,先让一个指针p指向他的后n个节点,然后对两个指针进行操作,其中当一个指针p的下一个指针为空是,另一个指针q所指的就是要删除的指针的前一个指针。
特殊的情况是当指针所指向的为空是,说明要删除的指针是第一个节点,直接将指针指向第一个节点的后一个节点就返回。
/**
* 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||head->next==NULL) return NULL;
ListNode *p=head;
ListNode *q=head;
for(int i=0;i<n;i++){
p=p->next;
}
if(p==NULL){
head=head->next;
return head;
}
while(p->next!=NULL){
p=p->next;
q=q->next;
}
q->next=q->next->next;
return head;
}
};