Skip to content

Latest commit

 

History

History
80 lines (56 loc) · 2.29 KB

162-find-peak-element.md

File metadata and controls

80 lines (56 loc) · 2.29 KB

162. Find Peak Element - 寻找峰值

峰值元素是指其值大于左右相邻值的元素。

给定一个输入数组 nums,其中 nums[i] ≠ nums[i+1],找到峰值元素并返回其索引。

数组可能包含多个峰值,在这种情况下,返回任何一个峰值所在位置即可。

你可以假设 nums[-1] = nums[n] = -∞

示例 1:

输入: nums = [1,2,3,1]
输出: 2
解释: 3 是峰值元素,你的函数应该返回其索引 2。

示例 2:

输入: nums = [1,2,1,3,5,6,4]
输出: 1 或 5 
解释: 你的函数可以返回索引 1,其峰值元素为 2;
     或者返回索引 5, 其峰值元素为 6。

说明:

你的解法应该是 O(logN) 时间复杂度的。


题目标签:Array / Binary Search

题目链接:LeetCode / LeetCode中国

题解

Language Runtime Memory
java 0 ms 39.7 MB
class Solution {
    public int findPeakElement(int[] nums) {
        if (nums.length < 2 || nums[0] > nums[1]) return 0;
        int l = 1, r = nums.length - 1;
        while (l < r) {
            int mid = l + r + 1 >> 1;
            if (nums[mid] > nums[mid - 1]) l = mid;
            else r = mid - 1;
        }
        return l;
    }
}
Language Runtime Memory
cpp 4 ms 8.9 MB
class Solution {
public:
    int findPeakElement(vector<int>& nums) {
        nums.insert(nums.begin(), INT_MIN);
        nums.push_back(INT_MIN);
        for (int i=1; i<(int)nums.size()-1; ++i) {
            if (nums[i] > nums[i-1] && nums[i] > nums[i+1]) return i-1;
        }
        return nums.size()-3;
    }
};
static auto _ = [](){ ios::sync_with_stdio(false); cin.tie(nullptr); return 0; }();