Find Peak Element

Posted amazingzoe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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.

click to show spoilers.

Note:

Your solution should be in logarithmic complexity.

 

Solution: Be aware of boundary. 

1. O(n) solution. 

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

 

以上是关于Find Peak Element的主要内容,如果未能解决你的问题,请参考以下文章

LC.162.Find Peak Element

162. Find Peak Element

Find Peak Element

Find Peak Element

162. Find Peak Element

162. Find Peak Element