Skip to main content

Find the Minimum and Maximum Number of Nodes Between Critical Points - Solution & Explanation

MediumLinked List17 min readAsked at: Amazon, Microsoft, Meta +3
Practice this problem

Problem Statement

A critical point in a linked list is defined as either a local maxima or a local minima.

A node is a local maxima if the current node has a value strictly greater than the previous node and the next node.

A node is a local minima if the current node has a value strictly smaller than the previous node and the next node.

Note that a node can only be a local maxima/minima if there exists both a previous node and a next node.

Given a linked list head, return an array of length 2 containing [minDistance, maxDistance] where minDistance is the minimum distance between any two distinct critical points and maxDistance is the maximum distance between any two distinct critical points. If there are fewer than two critical points, return [-1, -1].

 

Example 1:

Input: head = [3,1]
Output: [-1,-1]
Explanation: There are no critical points in [3,1].

Example 2:

Input: head = [5,3,1,2,5,1,2]
Output: [1,3]
Explanation: There are three critical points:
- [5,3,1,2,5,1,2]: The third node is a local minima because 1 is less than 3 and 2.
- [5,3,1,2,5,1,2]: The fifth node is a local maxima because 5 is greater than 2 and 1.
- [5,3,1,2,5,1,2]: The sixth node is a local minima because 1 is less than 5 and 2.
The minimum distance is between the fifth and the sixth node. minDistance = 6 - 5 = 1.
The maximum distance is between the third and the sixth node. maxDistance = 6 - 3 = 3.

Example 3:

Input: head = [1,3,2,2,3,2,2,2,7]
Output: [3,3]
Explanation: There are two critical points:
- [1,3,2,2,3,2,2,2,7]: The second node is a local maxima because 3 is greater than 1 and 2.
- [1,3,2,2,3,2,2,2,7]: The fifth node is a local maxima because 3 is greater than 2 and 2.
Both the minimum and maximum distances are between the second and the fifth node.
Thus, minDistance and maxDistance is 5 - 2 = 3.
Note that the last node is not considered a local maxima because it does not have a next node.

 

Constraints:

  • The number of nodes in the list is in the range [2, 105].
  • 1 <= Node.val <= 105

Approach Overview

Problem Overview: You are given a linked list and must identify all critical points. A node is critical if it is strictly greater than both neighbors (local maxima) or strictly smaller than both neighbors (local minima). After locating all such nodes, compute the minimum and maximum distance between any two critical points based on their positions in the list.

Approach 1: Single Pass and Collect Critical Points (O(n) time, O(1) space)

Traverse the linked list once while keeping track of the previous, current, and next node values. When the current value forms a local maximum or minimum, record its index as a critical point. Maintain the first critical index, the previous critical index, and update the minimum distance using the gap between consecutive critical points. The maximum distance is simply the difference between the first and the latest critical point. This works because the list is processed sequentially, so consecutive critical points are discovered in order.

This approach uses constant extra space since you only store a few index variables instead of all positions. It is the most efficient implementation and fits well with typical linked list traversal patterns.

Approach 2: Two-pass Approach for Clarity (O(n) time, O(k) space)

First iterate through the list and store the indices of all critical points in an array. After the traversal, compute the minimum distance by scanning adjacent elements in the array. The maximum distance is simply the difference between the first and last stored indices. Although this approach uses extra memory proportional to the number of critical points, it separates detection from distance calculation, which can make the logic easier to reason about.

This version is helpful when debugging or when you prefer clearer separation between scanning and computation steps. The algorithm still runs in linear time since each node is visited once.

Recommended for interviews: The single-pass solution is what most interviewers expect. It demonstrates strong understanding of linked list traversal and efficient state tracking. Implementing the two-pass version first can help verify the logic, but optimizing to a single traversal shows stronger algorithmic thinking.

Approach 1: Single Pass and Collect Critical Points

In this approach, we traverse the linked list in a single pass, collecting the positions of critical points (local minima and maxima) along the way. We maintain two variables, `firstCritical` and `lastCritical`, to track the position of the first and the last critical points encountered. Additionally, we calculate the minimum distance between consecutive critical points using a running minimum distance variable.

Finally, the maximum distance is the distance between the first and last critical points if at least two critical points are found. Otherwise, return [-1, -1] if fewer than two critical points exist.

We iterate over the linked list using a while loop, checking if the current node is a local maxima or minima by comparing it with its previous and next nodes. We track the indices of the first and last critical points discovered. Whenever another critical point is found, we update the minimum distance using the index difference from the last critical point.

If fewer than two critical points are found, we return [-1, -1]; otherwise, the result is an array of [minDistance, maxDistance].

Code

Python

C++

Java

C

C#

JavaScript

Complexity

The time complexity of this solution is O(n), where n is the number of nodes in the linked list, because we traverse the list only once. The space complexity is O(1), since we only use a static amount of additional space.

Try this approach in the editor →

Approach 2: Two-pass Approach for Clarity

This approach resolves the problem using two full passes over the linked list for clearer data separation. In the first traversal, we gather all the indices of critical points into a list. During the second traversal over the list of critical points, we calculate the minimum and maximum distances between critical point pairs.

This method enhances clarity by separately collecting and then processing data, although it might sacrifice some execution time compared to a single-pass solution.

This Python version uses two loops over a linked list. The first loop extracts indices of critical points, and the second loop computes the desired statistics from them, aiding in understandability and ensuring comprehensive error handling.

Code

Python

Complexity

The time complexity is O(n) as it traverses the list twice, but the proportional dependence on n remains. Space complexity is O(k), where k is the number of critical points stored.

Try this approach in the editor →

Approach 3: Direct Traversal

Based on the problem description, we need to find the positions of the first and last critical points in the linked list, first and last, respectively. This allows us to calculate the maximum distance maxDistance = last - first. For the minimum distance minDistance, we need to traverse the linked list, calculate the distance between two adjacent critical points, and take the minimum value.

The time complexity is O(n), where n is the length of the linked list. The space complexity is O(1).

Code

Python

Java

C++

Go

TypeScript

Try this approach in the editor →

Complexity Comparison

ApproachComplexity
Single Pass and Collect Critical Points

The time complexity of this solution is O(n), where n is the number of nodes in the linked list, because we traverse the list only once. The space complexity is O(1), since we only use a static amount of additional space.

Two-pass Approach for Clarity

The time complexity is O(n) as it traverses the list twice, but the proportional dependence on n remains. Space complexity is O(k), where k is the number of critical points stored.

Direct Traversal—

Detailed Complexity Analysis

ApproachTimeSpaceWhen to Use
Single Pass and Track Critical IndicesO(n)O(1)Best for interviews and production when you want optimal memory usage
Two-pass with Stored Critical PointsO(n)O(k)Useful for clarity or debugging when storing all critical indices simplifies logic

Video Solution

Find the Minimum and Maximum Number of Nodes Between Critical Points | 2 Ways | Leetcode 2058 • codestorywithMIK • 7,536 views views

Watch 9 more video solutions →

Frequently Asked Questions

Is Find the Minimum and Maximum Number of Nodes Between Critical Points easy or hard?
The problem is rated Medium because it combines linked list traversal with careful index tracking. Detecting local minima and maxima is straightforward, but correctly maintaining distances between critical points requires attention to edge cases such as having fewer than two critical points.
Find the Minimum and Maximum Number of Nodes Between Critical Points Python/Java solution
Both Python and Java implementations follow the same logic: traverse the linked list while tracking indices and detecting local minima or maxima. Maintain variables for the first critical index, previous critical index, and minimum distance. Update distances whenever a new critical point is found. The overall complexity remains O(n) time and O(1) extra space.
How to solve Find the Minimum and Maximum Number of Nodes Between Critical Points in O(n)?
Traverse the linked list while keeping track of three nodes: previous, current, and next. When the current value is strictly greater than both neighbors or strictly smaller than both, mark its index as a critical point. Update the minimum distance using the difference from the previous critical point, and update the maximum distance using the difference from the first critical point. Continue until the list ends.
What is the best approach for Find the Minimum and Maximum Number of Nodes Between Critical Points?
The best approach is a single-pass traversal of the linked list while tracking critical points. During iteration, check if the current node forms a local minimum or maximum compared with its neighbors. Track the first and previous critical indices to compute minimum and maximum distances on the fly. This solution runs in O(n) time and O(1) space.
Is Find the Minimum and Maximum Number of Nodes Between Critical Points asked at Google/Amazon/Meta?
Linked list traversal and local extrema detection problems appear frequently in interviews at companies like Amazon, Google, and Meta. While this exact problem may not always appear, the pattern of scanning a linked list and tracking positions of special nodes is a common interview topic.
What data structure is used in Find the Minimum and Maximum Number of Nodes Between Critical Points?
The core data structure is a singly linked list. The algorithm relies on sequential traversal and comparison of neighboring node values. Some implementations also use a small array or list to store indices of critical points, but the optimal approach keeps only a few index variables.
What is the time complexity of Find the Minimum and Maximum Number of Nodes Between Critical Points?
The optimal solution runs in O(n) time because each node in the linked list is visited exactly once during traversal. Distance calculations are constant-time updates when a new critical point is discovered. Space complexity can be O(1) if only indices are tracked, or O(k) if all critical point positions are stored.

Ready to solve this problem?

Practice Find the Minimum and Maximum Number of Nodes Between Critical Points with our built-in code editor and test cases.

Practice on FleetCode