852. Peak Index in a Mountain Array - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

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

  1. 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.

  2. 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:

    1. Loop from index 0 to the end.
    2. 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.

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:
    1. Initialize two pointers: low = 0 and high = arr.length - 1.

    2. 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 set high = mid.
    3. 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:

Python3
Python3

. . . .

Java Code

Below is the Java implementation using the binary search approach.

Java
Java

. . . .

Step-by-Step Walkthrough & Visual Examples

Consider the array:
[0, 5, 10, 12, 9, 6, 2]

  1. Initialization:
    Set low = 0 and high = 6 (last index).

  2. First Iteration:

    • Calculate mid = (0 + 6) // 2 = 3
    • Compare arr[3] (12) with arr[4] (9):
      • Since (12 > 9), the peak lies at mid or to the left.
      • Set high = mid = 3.
  3. Second Iteration:

    • Now, low = 0 and high = 3.
    • Calculate mid = (0 + 3) // 2 = 1
    • Compare arr[1] (5) with arr[2] (10):
      • Since (5 < 10), the peak is to the right.
      • Set low = mid + 1 = 2.
  4. Third Iteration:

    • Now, low = 2 and high = 3.
    • Calculate mid = (2 + 3) // 2 = 2
    • Compare arr[2] (10) with arr[3] (12):
      • Since (10 < 12), the peak is to the right.
      • Set low = mid + 1 = 3.
  5. Conclusion:

    • Now, low = 3 and high = 3.
    • The loop terminates, and the peak index is 3.

Additional Sections

Common Mistakes

  • Off-By-One Errors:
    Ensure that you correctly compare arr[mid] with arr[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.
  • 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))
TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
What are the hardest behavioral interview questions Reddit?
What are the tips for coding interviews in Perl?
What percentage of software engineers have no degree?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;