Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Find Middle of Linked List

EasyPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Find Middle of Linked List. Start with the requirements on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

An Edwards Lifesciences monitoring component stores a sequence of numeric readings in a singly linked list. Find and return the middle reading using a single traversal and constant extra space.

Represent each node as a dictionary with a value field and a next field. The next field contains another node dictionary or None. If the list has an even number of nodes, return the second of the two middle values. Return None when the list is empty.

Formal Specification

Implement middle_number(head), where head is either None or the first node in a singly linked list. Each node has an integer value and a next pointer. Return the integer stored in the middle node, or None for an empty list.

Use the slow and fast pointer technique. The slow pointer advances one node at a time, while the fast pointer advances two nodes at a time.

Constraints

  • 0 <= number of nodes <= 10^5
  • -10^9 <= node.value <= 10^9
  • The linked list is singly linked and acyclic
  • The input list must not be modified

Function Signature

def middle_number(head):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output