Lintcode 75.寻找峰值
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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.寻找峰值的主要内容,如果未能解决你的问题,请参考以下文章
[LintCode] Find Peak Element 求数组的峰值
[Lintcode]75. Find Peak Element