码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode Find Peak Element

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

标签:style   blog   io   ar   color   sp   for   on   div   

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

标签:style   blog   io   ar   color   sp   for   on   div   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!