Given the head
of a singly linked list, return the middle node of the linked list. If the number of nodes in the linked list is even, there will be two middle nodes, so return the second one.
Constraints:
Let n
be the number of nodes in a linked list.
- 1≤
n
≤100
- 1≤
Node.value
≤100
head
î€ = NULL
So far, you have probably brainstormed some approaches and have an idea of how to solve this problem. Let’s explore some of these approaches and figure out which one to follow based on considerations such as time complexity and any implementation constraints.
In the naive approach, we use an external array to store the elements of the linked list, and then we return the element present at the index ⌊2array.length​⌋ as the middle node of the linked list. The time and space complexity of this approach is O(n), where n is the number of nodes in the linked list. Let’s see if we can solve this problem with better time and space complexity.