852. Peak Index in a Mountain Array - Detailed Explanation
Problem Statement
A mountain array is defined as an array that satisfies the following properties:
-
The array contains at least three elements.
-
There exists an index i (with (0 < i < \text{arr.length} - 1)) such that:
- ( \text{arr}[0] < \text{arr}[1] < \dots < \text{arr}[i] ) (strictly increasing), and
- ( \text{arr}[i] > \text{arr}[i+1] > \dots > \text{arr}[\text{arr.length} - 1] ) (strictly decreasing).
Task:
Given a mountain array arr
, return the index i (the peak index) where the peak (maximum value) is located.
Example 1
- Input:
[0, 1, 0]
- Output:
1
- Explanation:
The array increases from 0 to 1 and then decreases from 1 to 0. The peak (maximum value) is at index 1.
Example 2
- Input:
[0, 2, 1, 0]
- Output:
1
- Explanation:
The array increases from 0 to 2 and then decreases from 2 to 1 to 0. The peak is at index 1.
Constraints
-
(3 \leq \text{arr.length} \leq 10^4)
-
(0 \leq \text{arr}[i] \leq 10^6)
-
The input array is guaranteed to be a mountain array.
Hints to Guide Your Approach
-
Unimodal Property:
Since the array first strictly increases and then strictly decreases, the peak is the unique maximum value. You can exploit this property to find the peak efficiently. -
Binary Search Strategy:
Use binary search to efficiently locate the peak. Compare the middle element with its next neighbor:- If ( \text{arr}[mid] < \text{arr}[mid + 1] ), then the peak must lie to the right.
- Otherwise, the peak lies to the left (or could be the current element).
This way, you reduce the search space by half in each iteration.
Approaches to Solve the Problem
Approach 1: Linear Scan
Explanation
-
Idea:
Iterate through the array until you find the point where an element is greater than its next element. -
Steps:
- Loop from index 0 to the end.
- For each index ( i ), if ( \text{arr}[i] > \text{arr}[i+1] ), then ( i ) is the peak index.
-
Complexity Analysis:
- Time Complexity: (O(n))
- Space Complexity: (O(1))
-
Pros & Cons:
It is simple and works well for small arrays, but it does not take full advantage of the mountain array property.
Approach 2: Binary Search (Optimal)
Explanation
- Idea:
Because the array is strictly increasing and then strictly decreasing, you can use binary search to find the point where the order changes. - Steps:
-
Initialize two pointers:
low = 0
andhigh = arr.length - 1
. -
While
low < high
:- Compute
mid = (low + high) // 2
. - If ( \text{arr}[mid] < \text{arr}[mid + 1] ), then the peak is in the right half, so set
low = mid + 1
. - Otherwise, the peak is in the left half or could be the current
mid
, so sethigh = mid
.
- Compute
-
When
low == high
, you have found the peak index.
-
- Complexity Analysis:
- Time Complexity: O(\log n))
- Space Complexity: (O(1))
- Why It Works:
At each iteration, you are making a decision based on the slope of the mountain (whether it is ascending or descending) and narrowing down the region that can contain the peak.
Code Implementations
Python Code
Below is the Python implementation using the binary search approach:
Java Code
Below is the Java implementation using the binary search approach.
Step-by-Step Walkthrough & Visual Examples
Consider the array:
[0, 5, 10, 12, 9, 6, 2]
-
Initialization:
Setlow = 0
andhigh = 6
(last index). -
First Iteration:
- Calculate
mid = (0 + 6) // 2 = 3
- Compare
arr[3]
(12) witharr[4]
(9):- Since (12 > 9), the peak lies at
mid
or to the left. - Set
high = mid = 3
.
- Since (12 > 9), the peak lies at
- Calculate
-
Second Iteration:
- Now,
low = 0
andhigh = 3
. - Calculate
mid = (0 + 3) // 2 = 1
- Compare
arr[1]
(5) witharr[2]
(10):- Since (5 < 10), the peak is to the right.
- Set
low = mid + 1 = 2
.
- Now,
-
Third Iteration:
- Now,
low = 2
andhigh = 3
. - Calculate
mid = (2 + 3) // 2 = 2
- Compare
arr[2]
(10) witharr[3]
(12):- Since (10 < 12), the peak is to the right.
- Set
low = mid + 1 = 3
.
- Now,
-
Conclusion:
- Now,
low = 3
andhigh = 3
. - The loop terminates, and the peak index is 3.
- Now,
Additional Sections
Common Mistakes
- Off-By-One Errors:
Ensure that you correctly comparearr[mid]
witharr[mid + 1]
and update the pointers properly. - Boundary Conditions:
The array is guaranteed to be a mountain array, so there’s always a valid peak. However, careful pointer updates are key to avoiding infinite loops.
Edge Cases
- Minimum Size Array:
The smallest mountain array has exactly three elements, e.g.,[a, b, c]
where (a < b > c). - Peak at the Beginning or End:
By definition, the peak cannot be at index 0 or the last index, so these edge cases are not applicable in a valid mountain array.
Alternative Variations & Related Problems
-
Variations:
- Finding a peak element in an unsorted array (this is a more general problem where the binary search strategy also applies but with a slightly different approach).
-
Related Problems for Further Practice:
- "Find Peak Element" – which requires finding any peak in an unsorted array.
- "Longest Mountain in Array" – which involves identifying and measuring mountain subarrays.
Complexity Recap
- Linear Scan Approach:
- Time Complexity: (O(n))
- Space Complexity: (O(1))
- Binary Search Approach (Preferred):
- Time Complexity: (O(\log n))
- Space Complexity: (O(1))
GET YOUR FREE
Coding Questions Catalog
