leetcode_162. Find Peak Element

题目:

A peak element is an element that is greater than its neighbors.

Given an input array where num[i] ≠ num[i+1], find a peak element and return its index.

The array may contain multiple peaks, in that case return the index to any one of the peaks is fine.

You may imagine that num[-1] = num[n] = -∞.

For example, in array [1, 2, 3, 1], 3 is a peak element and your function should return the index number 2.

简单 不多赘述。注意一个稍特殊的情况是 只有一个元素的话。那么返回的一定是0.

直接贴代码:

class Solution {
public:
    int findPeakElement(vector<int>& nums) {
        int pre = nums[0];
        if(nums.size() == 1){return 0;}
        if(nums[0] > nums[1]){
            return 0;
        }
        for(int i = 1; i < nums.size()-1; ++i){
            if(nums[i] > pre && nums[i] > nums[i+1]){
                return i;
            }
            pre = nums[i];
        }
        if(nums[nums.size()-1] > nums[nums.size()-2]){
            return nums.size()-1;
        }
    } 
};


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章