leetcode 162. Find Peak Element

题目描述

如果numsi-1<numsi并且numsi>numsi+1,那么numsi就是峰值。除此情况之外,numsi-1和numsi+1至少有一个大于numsi,因为题目已经保证相邻的元素不相等。坚持向上坡方向走一定能达到一个峰值,如果往两边走都是上坡,那就随意向两边选一个方向走。

cpp 复制代码
class Solution {
public:
    int findPeakElement(vector<int>& nums) {
        int left = 0;
        int right = nums.size() -1;
        int mid = 0;
        while(left<=right){
            mid = (left+right)/2;
            if(greater_left(nums,mid) && greater_right(nums,mid))
                return mid;
            if(greater_left(nums,mid)){
                //往左走是下坡,所以应该向右走
                left = mid +1;
            }else{
                //往左走是上坡,所以应该向左走
                //这里包含了,往左往右都是上坡的情况,此时选择往左走
                right = mid -1;
            }
        }
        return left;
    }

    //nums[idx]是否比它左边的元素大
    bool greater_left(vector<int>& nums,int idx){
        if(idx == 0)
            return true;
        return nums[idx]>nums[idx-1];
    }
    //nums[idx]是否比它右边的元素大
    bool greater_right(vector<int>& nums,int idx){
        if(idx == nums.size() -1)
            return true;
        return nums[idx]>nums[idx+1];
    }
};
相关推荐
旖旎夜光5 天前
力控面试题 01.01: 判定字符是否唯一(位运算) —— 题解
c++·学习·算法·leetcode·力控
CoderYanger5 天前
A.每日一题:835. 图像重叠
java·开发语言·程序人生·leetcode·面试·职场和发展·学习方法
圣保罗的大教堂5 天前
leetcode 3524. 求出数组的 X 值 I 中等
leetcode
Tim_105 天前
【LeetCode】338、比特位计数
c++·算法·leetcode
mmmmath_35 天前
LeetCode.028.找出字符串中第一个匹配项的
数据结构·算法·leetcode
Navigator_Z5 天前
LeetCode //C - 1255. Maximum Score Words Formed by Letters
c语言·算法·leetcode
All for pursuit.5 天前
【栈-4】739.每日温度
数据结构·c++·算法·leetcode
开开心心就好5 天前
安卓手写文字生成工具,多种纸张一直免费
网络·网络协议·tcp/ip·leetcode·智能手机·电脑·模拟退火算法
All for pursuit.5 天前
【栈-5】84.柱状图中最大的矩形
数据结构·c++·算法·leetcode
圣保罗的大教堂5 天前
leetcode 1665. 完成所有任务的最少初始能量 中等
leetcode