首页 > 代码库 > Lintcode 75.寻找峰值

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/#

 

Lintcode 75.寻找峰值