Midpoint of Linked list
For a given singly linked list of integers, find and return the node present at the middle of the list.
For a given singly linked list of integers, find and return the node present at the middle of the list.
If the length of the singly linked list is even, then return the first middle node.
Example: Consider, 10 -> 20 -> 30 -> 40 is the given list, then the nodes present at the middle with respective data values are, 20 and 30. We return the first node with data 20.
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 and the only line of each test case or query contains the elements of the singly linked list separated by a single space.
While specifying the list elements for input, -1 indicates the end of the singly linked list and hence, would never be a list element
For each test case/query, print the data value of the node at the middle of the given list.
Output for every test case will be printed in a seperate line.
1 <= t <= 10^2
0 <= M <= 10^5
Where M is the size of the singly linked list.
Time Limit: 1sec
1
1 2 3 4 5 -1
3
2
-1
1 2 3 4 -1
2
Comments
Post a Comment
Please give us your valuable feedback