1. 程式人生 > >Week 8 Remove Nth Node From End of List

Week 8 Remove Nth Node From End of List

19.Remove Nth Node From End of List

問題概述

Given a linked list, remove the n-th node from the end of list and return its head. 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.

分析

這道題讓我們移除連結串列倒數第N個節點,限定n一定是有效的,即n不會大於連結串列中的元素總數。 題目要求我們一次遍歷解決問題,那麼就得想些比較巧妙的方法了。比如我們首先要考慮的時,如何找到倒數第N個節點,由於只允許一次遍歷,所以我們不能用一次完整的遍歷來統計連結串列中元素的個數,而是遍歷到對應位置就應該移除了。 我們需要用兩個指標來幫助我們解題,pre和cur指標。 ①首先cur指標先向前走N步,如果此時cur指向空,說明N為連結串列的長度,則需要移除的為首元素,此時返回head->next即可。 ②如果cur存在,再繼續往下走,此時pre指標也跟著走,直到cur為最後一個元素時停止,此時pre指向要移除元素的前一個元素,修改指標跳過需要移除的元素即可。

程式碼

/**
 * 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->next) {return NULL;}
        ListNode *pre = head, *cur = head;
        for (int i = 0; i < n; ++i) cur = cur->next;
        if (!cur) {return head->next;}
        while (cur->next) {
            cur = cur->next;
            pre = pre->next;
        }
        pre->next = pre->next->next;
        return head;
    }
};