852. Peak Index in a Mountain Array

Problem:

Let's call an array A a mountain if the following properties hold:

  • A.length >= 3
  • There exists some 0 < i < A.length - 1 such that A[0] < A[1] < ... A[i-1] < A[i] > A[i+1] > ... > A[A.length - 1]
    Given an array that is definitely a mountain, return any i such that A[0] < A[1] < ... A[i-1] < A[i] > A[i+1] > ... > A[A.length - 1].

Example 1:

Input: [0,1,0]
Output: 1

Example 2:

Input: [0,2,1,0]
Output: 1

Note:

  1. 3 <= A.length <= 10000
  2. 0 <= A[i] <= 10^6
  3. A is a mountain, as defined above.

思路

Solution (C++):

int peakIndexInMountainArray(vector<int>& A) {
    int low = 0, high = A.size()-1;
    while (low <= high) {
        int mid = low + (high-low) / 2;
        if (A[mid] > A[mid+1] && A[mid] > A[mid-1])  return mid;
        else if (A[mid] < A[mid+1]) low = mid + 1;
        else  high = mid-1;
    }
    return -1;
}

性能

Runtime: 16 ms  Memory Usage: 7.1 MB

思路

Solution (C++):

int peakIndexInMountainArray(vector<int>& A) {
    for (int i = 0; i < A.size()-1; ++i) {
        if (A[i] > A[i+1])  return i;
    }
    return -1;
}

性能

Runtime: 12 ms  Memory Usage: 7.4 MB

相关链接如下:

知乎:littledy

欢迎关注个人微信公众号:小邓杂谈,扫描下方二维码即可

作者:littledy
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利。
原文地址:https://www.cnblogs.com/dysjtu1995/p/12741443.html