leetcode 19: 刪除連結串列的倒數第N個節點
阿新 • • 發佈:2018-11-15
題目:
給定一個連結串列,刪除連結串列的倒數第 n 個節點,並且返回連結串列的頭結點。
示例:
給定一個連結串列: 1->2->3->4->5, 和 n = 2. 當刪除了倒數第二個節點後,連結串列變為 1->2->3->5.
1 ListNode* removeNthFromEnd(ListNode* head, int n) { 2 ListNode *p = head, *q = head; 3 while(n-- > 0 && nullptr != p)4 { 5 p = p->next; 6 } 7 if(n <= 0) 8 { 9 if(p == nullptr) 10 return q->next; 11 while(p->next != nullptr) 12 { 13 p = p->next; 14 q = q->next; 15 } 16 q->next = q->next->next;17 } 18 return head; 19 }