【leetcode】Find Peak Element

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 };
复制代码

 

 

 

posted @   H5开发技术  阅读(137)  评论(0编辑  收藏  举报
(评论功能已被禁用)
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现
点击右上角即可分享
微信分享提示