首页 > 其他 > 详细

【leetcode】Find Peak Element

时间:2015-01-27 00:13:00      阅读:162      评论:0      收藏:0      [点我收藏+]

Find Peak Element

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.

The array may contain multiple peaks, in that case return the index to any one of the peaks is fine.

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.

Note:

Your solution should be in logarithmic complexity.


 

 

利用二分法才能达到logarithmic的复杂度

当num[mid]<num[mid+1]时,peek一定在右边

当num[mid]>num[mid+1]时,peek一定在左边

 

 

 1 class Solution {
 2 
 3 public:
 4 
 5     int findPeakElement(const vector<int> &num) {
 6 
 7        
 8 
 9         int n=num.size();
10 
11         int left=0;
12 
13         int right=n-1;
14 
15         int result;
16 
17         int mid;       
18 
19         while(left<right)
20 
21         {
22 
23             mid=(left+right)/2;
24 
25             if(mid+1>n-1)
26 
27             {
28 
29                 return mid;
30 
31             }           
32 
33             if(num[mid]<num[mid+1])
34 
35             {
36 
37                 left=mid+1;  
38 
39             }
40 
41             else if(num[mid]>num[mid+1])
42 
43             {
44 
45                 right=mid;
46 
47             }             
48 
49         }
50 
51  
52 
53         return left;       
54 
55     }
56 
57 };

 

 

 

【leetcode】Find Peak Element

原文:http://www.cnblogs.com/reachteam/p/4251642.html

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