
Sponsored
Sponsored
This technique uses two pointers, 'slow' and 'fast'. Both start at the head of the list. The 'slow' pointer progresses one node at a time while the 'fast' pointer moves two nodes at a time. When the 'fast' pointer reaches the end of the list, the 'slow' pointer will be at the middle node. This works because the 'fast' pointer traverses the list twice as fast as the 'slow' pointer, thus splitting the path lengthwise in half.
Time Complexity: O(n), where n is the number of nodes in the list, because we are iterating through the list once.
Space Complexity: O(1), since we are using a constant amount of space.
1function ListNode(val, next) {
2 this.val = (val===undefined ? 0 : val)
3 this.next = (next===undefined ? null : next)
4}
5
6var middleNode = function(head) {
7 let slow = head;
8 let fast = head;
9 while (fast !== null && fast.next !== null) {
10 slow = slow.next;
11 fast = fast.next.next;
12 }
13 return slow;
14};JavaScript's flexibility allows us to define a ListNode constructor for creating list nodes. The 'middleNode' function implements the two-pointer approach, accurately determining and returning the middle node of the provided linked list.
This approach involves two passes over the list. The first pass calculates the total number of nodes. In the second pass, we traverse halfway through the list to reach the middle node by stopping at n/2, where n is the number of nodes. This explicitly determines the node that marks the middle of the list.
Time Complexity: O(n) for two full passes through the list.
Space Complexity: O(1) as only a few extra variables are used.
1
This C implementation counts the nodes in a linked list using an initial loop, then follows a second traversal that stops at the mid-point to return the middle node.