Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions Data Structures/LinkedList/Remove Nth Node From End of List.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/*

Remove Nth Node From End of List

Given the head of a linked list, remove the nth node from the end of the list and return its head.


Example 1:

Input: head = [1,2,3,4,5], n = 2
Output: [1,2,3,5]


Example 2:

Input: head = [1], n = 1
Output: []


Example 3:

Input: head = [1,2], n = 1
Output: [1]

Constraints:

The number of nodes in the list is sz.
1 <= sz <= 30
0 <= Node.val <= 100
1 <= n <= sz

https://leetcode.com/problems/remove-nth-node-from-end-of-list/

*/


class Solution {
public:
ListNode* removeNthFromEnd(ListNode* head, int n) {

ListNode * dummy = new ListNode(0);

dummy->next = head;

ListNode * fast = dummy;
ListNode * slow = dummy;

while(n>0){
n--;
fast = fast->next;
}

while(fast!=NULL && fast->next!=NULL){
slow = slow->next;
fast = fast->next;
}
slow->next = slow->next->next;

return dummy->next;
}
};