1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
class Solution { public: ListNode* removeNthFromEnd(ListNode* head, int n) { ListNode *start = new ListNode(); ListNode *fast = start, *slow = start; start->next = head; for (int i = 0; i < n + 1; ++i) { fast = fast->next; } while(fast != nullptr) { fast = fast->next; slow = slow->next; } slow->next = slow->next->next; return start->next; } };
|