Difficulty: Medium, Asked-in: Amazon.
Key takeaway: An excellent problem for beginners to learn problem-solving with linked lists. This blog will guide you to work efficiently with linked lists and deal with pointers.
Write a program to remove the Nth node from the end of the linked list, i.e., when the node is traversed from the end, delete the Nth node from there.
Input: 1->2->3->4->5, N = 2, Output: 1->2->3->5.
Input: 7->8->4->5->3, N = 1, Output: 7->8->4->5.
If M is the length of the linked list, then the Nth node from the end is the (M - N + 1)th node from the beginning. So we can modify the problem to remove the (M − N + 1)th node from the beginning of the list.
ListNode* removeNthNodeListEnd(ListNode* head, int N)
{
if (head == NULL || N <= 0)
return head;
int length = 0;
ListNode* curr = head;
while (curr != NULL)
{
length = length + 1;
curr = curr->next;
}
if (N > length)
{
cout << "Error: N is greater than the list length." << endl;
return head;
}
if (length == N)
{
temp = head->next;
delete head;
return temp;
}
ListNode* prev = NULL;
curr = head;
for (int i = 0; i < length - N; i = i + 1)
{
prev = curr;
curr = curr->next;
}
// Remove the Nth node
prev->next = curr->next;
delete curr;
return head;
}
def removeNthNodeListEnd(head, N):
if not head or N <= 0:
return head
length = 0
curr = head
while curr:
length = length + 1
curr = curr.next
if N > length:
print("Error: N is greater than the list length.")
return head
if length == N:
temp = head.next
del head
return temp
prev = None
curr = head
for i in range(length - N):
prev = curr
curr = curr.next
# Remove the Nth node
prev.next = curr.next
del curr
return head
ListNode removeNthNodeListEnd(ListNode head, int N)
{
if (head == null || N <= 0)
return head;
int length = 0;
ListNode curr = head;
while (curr != null)
{
length += 1;
curr = curr.next;
}
if (N > length)
{
System.out.println("Error: N is greater than the list length.");
return head;
}
if (length == N)
{
ListNode temp = head.next;
head.next = null;
return temp;
}
ListNode prev = null;
curr = head;
for (int i = 0; i < length - N; i = i + 1)
{
prev = curr;
curr = curr.next;
}
prev.next = curr.next;
curr.next = null;
return head;
}
We are performing two traversals of the linked list: first to calculate the length M of the list, and second to find the (M − N)th node. There are 2M − N operations, so the time complexity in the worst case is O(M). Space complexity is O(1), as we are using constant space.
The idea here is to use two pointers to find the (N + 1)th node from the end. In the beginning, the first pointer is at the (N + 1)th node from the start, and the second pointer is at the head of the linked list. By moving both pointers one step at a time until the first pointer reaches the end, the second pointer will point to the (N + 1)th node from the end, and we can easily remove the next node, which is the Nth node from the list end.
ListNode* removeNthNodeListEnd(ListNode* head, int N)
{
if (head == NULL)
return NULL;
ListNode* firstPointer = head;
ListNode* secondPointer = head;
for (int i = 1; i <= N; i = i + 1)
firstPointer = firstPointer->next;
if (firstPointer == NULL)
{
ListNode* temp = head->next;
head->next = NULL;
delete head;
return temp;
}
while (firstPointer->next)
{
firstPointer = firstPointer->next;
secondPointer = secondPointer->next;
}
ListNode* temp = secondPointer->next;
secondPointer->next = temp->next;
delete temp;
return head;
}
def removeNthNodeListEnd(head, N):
if not head:
return None
first_pointer = head
second_pointer = head
for i in range(N):
first_pointer = first_pointer.next
if not first_pointer:
temp = head.next
head.next = None
return temp
while first_pointer.next:
first_pointer = first_pointer.next
second_pointer = second_pointer.next
temp = second_pointer.next
second_pointer.next = temp.next
temp.next = None
return head
ListNode removeNthNodeListEnd(ListNode head, int N)
{
if (head == null)
return null;
ListNode firstPointer = head;
ListNode secondPointer = head;
for (int i = 1; i <= N; i++)
firstPointer = firstPointer.next;
if (firstPointer == null)
{
ListNode temp = head.next;
head.next = null;
return temp;
}
while (firstPointer.next != null)
{
firstPointer = firstPointer.next;
secondPointer = secondPointer.next;
}
ListNode temp = secondPointer.next;
secondPointer.next = temp.next;
temp.next = null;
return head;
}
If the length of the linked list is M, then the firstPointer will move M steps, and the secondPointer will move M - N steps. So, total pointer movement = 2M - N, and time complexity = O(M). Space complexity = O(1) as we are using constant space.
If you have any queries/doubts/feedback, please write us at contact@enjoyalgorithms.com. Enjoy learning, Enjoy algorithms!