Delete Nth node from end of Linked List
You have been given a singly Linked List of 'N' nodes with integer data and an integer 'K'. Your task is to remove the Kth node from the end of the given Linked List.
For example:
The given linked list is 1 -> 2 -> 3 -> 4-> 'NULL'. and 'K' is 2
After removing the second node from the end, the linked list become 1->2->4->'NULL'
Follow Up:
Can you solve this without finding the length of the linked list and using O(1) extra space?
Input format :
The first line of input contains an integer 'T' representing the number of test cases or queries to be processed. Then the test case follows.
The first line of each test case contains a single integer 'K', representing the index(1 based indexing) of a node from the last to be deleted.
The second line of each test case contains the elements of the singly linked list separated by a single space and terminated by -1. Hence, -1 would never be a list element.
Output format :
For each test case, print a single line that contains the updated linked list in a linear fashion. A single space will separate all the list data and -1 will indicate the end of the list.
Print output of each test case in a separate line.
Note :
You do not need to print anything, it has already been taken care of. Just implement the given function.
Constraints :
1 <= 'T' <= 5
0 <= 'N' <= 10 ^ 5
0 <= 'K' <= 'N'
1 <= 'DATA' <= 10 ^ 9 and 'DATA' != -1
Time Limit: 1 sec.
CodingNinjas
author
2y
Intuition:
Lets K be the total nodes in the linked list.
Observation : The Nth node from the end is (K-N+1)th node from the beginning.
So the problem simplifies down to that we have to find (K-N+1)th nod...read more
CodingNinjas
author
2y
Using Lists
The naive solution is to process all the nodes from the front side of the linked list and keep adding a node to the list. Now we can easily remove the Kth node from the end of the list by s...read more
CodingNinjas
author
2y
By Finding Length of the Linked List
- Find the length of Linked List 'L'
- Check if 'L' = 'K' then remove the head by assigning head to head’s next node.
- Else start iterating through the linked list until i...read more
CodingNinjas
author
2y
Using Slow and Fast Pointers
We can remove the required node without finding the length of the given linked list by using two pointers 'SLOW' and 'FAST', which are 'K' nodes apart from each other.
- Init...read more
Add answer anonymously...
Top 24/7 Customer Software Developer interview questions & answers
Popular interview questions of Software Developer
>
24/7 Customer Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+
Reviews
4 L+
Interviews
4 Cr+
Salaries
1 Cr+
Users/Month
Contribute to help millions
Get AmbitionBox app