Find a Node in Linked List

Easy
0/40
Average time to solve is 10m
profile
Contributed by
24 upvotes
Asked in companies
Hewlett Packard EnterpriseCadence Design SystemsRTDS

Problem statement

You have been given a singly linked list of integers. Write a function that returns the index/position of integer data denoted by 'N' (if it exists). Return -1 otherwise.

Note :
Assume that the Indexing for the singly linked list always starts from 0.
Detailed explanation ( Input/output format, Notes, Images )
Input format :
The first line contains an Integer 'T' which denotes the number of test cases. 

The first line of each test case or query contains the elements of the singly linked list separated by a single space. 

The second line contains the integer value 'N'. It denotes the data to be searched in the given singly linked list.
Remember/Consider :
While specifying the list elements for input, -1 indicates the end of the singly linked list and hence -1 would never be a list element.
Output format :
For each test case, return the index/position of 'N' in the singly linked list. Return -1, otherwise.

Output for every test case will be printed 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 <= 10^2
0 <= M <= 10^5

Where 'M' is the size of the singly linked list.

Time Limit: 1 sec
Sample Input 1 :
2
3 4 5 2 6 1 9 -1
5
10 20 30 40 50 60 70 -1
6
Sample Output 1 :
2
-1
 Explanation for Sample Output 1:
In test case 1, 'N' = 5 appears at position 2 (0-based indexing) in the given linked list.

In test case 2, we can see that 'N' = 6 is not present in the given linked list.
Sample Input 2 :
2
1 -1
2
3 4 5 2 6 1 9 -1
6
Sample Output 2 :
-1
4
 Explanation for Sample Output 2:
In test case 1, we can see that 'N' = 2 is not present in the given linked list.

In test case 2, 'N' = 6 appears at position 4 (0-based indexing) in the given linked list.
Hint

If you knew the position of the element in the list that starts from the second node of the original list, could you calculate your answer through recursion?

Approaches (2)
Recursive Approach

The steps are as follows:

 

  1. If the head is null, return -1 since an empty list will obviously not contain the element that we need to look for.
  2. Check whether the head’s data is equal to the element we want to search. Return 0 if it is.
  3. Then recurse on the next node from the head and get its answer.
  4. If the answer from the recursive call is -1, your answer is also -1 since you already check the head’s data.
  5. If the recursive call’s answer is non zero then add one to it and return because the list we had sent in the recursive call is shifted by one.
Time Complexity

O(N), Where ‘N’ is the length of the linked list.

 

Since we are visiting each node exactly once. Thus the time complexity will be O(N).

Space Complexity

O(N), Where ‘N’ is the length of the linked list. 

 

Since O(N) space is used because of the recursion stack. Thus the space complexity will be O(N).

Code Solution
(100% EXP penalty)
Find a Node in Linked List
Full screen
Console