Lintcode 75.寻找峰值

---------------------------------------

按照给定的峰值定义,峰值的左半部分一定是递增的,所以只要找到不递增的即可。

AC代码:

class Solution {
    /**
     * @param A: An integers array.
     * @return: return any of peek positions.
     */
    public int findPeak(int[] A) {
        for(int i=1;i<A.length;i++){
            if(A[i]>=A[i+1]) return i;
        }
        return -1;
    }
}

题目来源: http://www.lintcode.com/zh-cn/problem/find-peak-element/#

原文地址:https://www.cnblogs.com/cc11001100/p/6241683.html