882. Peak Index in a Mountain Array
2026/1/12小于 1 分钟约 260 字
882. Peak Index in a Mountain Array
难度: Medium
题目描述
You are given an integer mountain array arr of length n where the values increase to a peak element and then decrease.
Return the index of the peak element.
Your task is to solve it in O(log(n)) time complexity.
Example 1:
Input: arr = [0,1,0]
Output: 1
Example 2:
Input: arr = [0,2,1,0]
Output: 1
Example 3:
Input: arr = [0,10,5,2]
Output: 1
Constraints:
3 <= arr.length <= 1050 <= arr[i] <= 106arris guaranteed to be a mountain array.
解题思路
代码实现
解决方案
java
class Solution {
public int peakIndexInMountainArray(int[] arr) {
}
}