Delete a Node from Linked List
You have been given a linked list of integers. Your task is to write a function that deletes a node from a given position, 'POS'.
Note :
Assume that the Indexing for the linked list always starts from 0.
If the position is greater than or equal to the length of the linked list, you should return the same linked list without any change.
Illustration :
The following images depict how the deletion has been performed.
Image-I :
Image-II :
Input format :
The first line contains an Integer 'T' which denotes the number of test cases or queries to be run. Then the test cases follow.
The first line of each test case or query contains the elements of the linked list separated by a single space.
The second line of each test case contains the integer value of 'POS'. It denotes the position in the linked list from where the node has to be deleted.
Remember/Consider :
While specifying the list elements for input, -1 indicates the end of the singly linked list and hence, would never be a list element
Output format :
For each test case/query, print the resulting linked list of integers in a row, separated by a single space.
Output for every test case will be printed in a separate line.
Note:
You are not required to print the output, it has already been taken care of. Just implement the function.
Constraints :
1 <= T <= 10^2
0 <= N <= 10^5
POS >= 0
Time Limit: 1sec
CodingNinjas
author
2y
Step 1 : I first applied the native approach to iterate and find the previous and next node and the delete the given node.
Step 2 : I was asked to optimize and since I know the optimization so I used t...read more
CodingNinjas
author
2y
Recursive Approach
- If HEAD is null, return null since we can’t delete anything from an empty list.
- If the head’s DATA is equal to the element we want to remove, return the next node from the HEAD. Othew...read more
CodingNinjas
author
2y
Iterative Approach
- If the HEAD is null, return null since you can’t delete anything from an empty list.
- If the head’s DATA is equal to the element you want to remove, return the next node from the HEAD....read more
Add answer anonymously...
Top Bajaj Finserv Health Software Developer Intern interview questions & answers
Popular interview questions of Software Developer Intern
Top HR questions asked in Bajaj Finserv Health Software Developer Intern
>
Bajaj Finserv Health Software Developer Intern 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