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

【leetcode】Find Peak Element

时间:2015-01-27 00:15:21      阅读:253      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!