首页 > 其他 > 详细

LeetCode Find Peak Element

时间:2014-12-06 14:03:05      阅读:234      评论:0      收藏:0      [点我收藏+]

A peak element is an element that is greater than its neighbors.

Given an input array where num[i] ≠ num[i+1], find a peak element and return its index.

You may imagine that num[-1] = num[n] = -∞.

For example, in array [1, 2, 3, 1], 3 is a peak element and your function should return the index number 2.

 

 1 public class Solution {
 2     public int findPeakElement(int[] num) {
 3         int peak = Integer.MIN_VALUE;
 4         int res = 0;
 5         for (int i = 1; i < num.length - 1; i++) {
 6             if (num[i] > num[i - 1] && num[i] > num[i + 1]&&num[i]>peak) {
 7                 res = i;
 8                 peak = num[i];
 9             }
10         }
11         if (num[0] > num[res] && num[0] > num[num.length - 1]) {
12             return 0;
13         } else if (num[num.length - 1] > num[0] && num[num.length - 1] > num[res]) {
14             return num.length - 1;
15         }else return res;
16     }
17 }

 

LeetCode Find Peak Element

原文:http://www.cnblogs.com/birdhack/p/4148152.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!