Fork me on GitHub

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

 

posted @ 2017-01-01 22:27  CC11001100  阅读(336)  评论(0编辑  收藏  举报