[LeetCode] 852. 山脉数组的峰顶索引
Posted ACBingo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode] 852. 山脉数组的峰顶索引相关的知识,希望对你有一定的参考价值。
二分的一种变种,这次是比较条件改变了,相邻的两位来比较,进而判断左右区间的选择
class Solution {
public int peakIndexInMountainArray(int[] arr) {
int n = arr.length;
int left = 1, right = n - 2, ans = 0;
while (left <= right) {
int mid = (left + right) / 2;
if (arr[mid] > arr[mid + 1]) {
ans = mid;
right = mid - 1;
} else {
left = mid + 1;
}
}
return ans;
}
}
以上是关于[LeetCode] 852. 山脉数组的峰顶索引的主要内容,如果未能解决你的问题,请参考以下文章
Python描述 LeetCode 852. 山脉数组的峰顶索引