博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode]Find Peak Element
阅读量:6093 次
发布时间:2019-06-20

本文共 1106 字,大约阅读时间需要 3 分钟。

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.

分析

这种找Peak Element的首先想到的是binary search, 因为有更优的时间复杂度,否则brute force O(n)的方法太直接了。

binary search的方法就是比较当前element与邻居,至于左邻居还是右邻居都可以,只要一致就行。不断缩小范围,最后锁定peak element.

这种类似题也有很多Follow up, 比如先增后减的数组怎么找指定元素,甚至先增后减再增的数组怎么找指定元素。

方法都是一样的,就是先得找到peak element的点,然后根据peak点将整个数组分成几部分,对于每个部分来说,是单调的,所以可以对每个部分分别用binary search来找元素。

复杂度

time: O(logn), space: O(1)

代码

public class Solution {    public int findPeakElement(int[] nums) {        int l = 0;        int r = nums.length - 1;        while (l < r) {            int mid = l + (r - l) / 2;            if (nums[mid] < nums[mid + 1]) {                l = mid + 1;            } else {                r = mid;            }        }        return l;    }}

转载地址:http://jswza.baihongyu.com/

你可能感兴趣的文章
爬虫豆瓣top250项目-开发文档
查看>>
Elasticsearch增删改查
查看>>
oracle归档日志增长过快处理方法
查看>>
有趣的数学书籍
查看>>
teamviewer 卸载干净
查看>>
多线程设计模式
查看>>
解读自定义UICollectionViewLayout--感动了我自己
查看>>
SqlServer作业指定目标服务器
查看>>
UnrealEngine4.5 BluePrint初始化中遇到编译警告的解决办法
查看>>
User implements HttpSessionBindingListener
查看>>
抽象工厂方法
查看>>
ubuntu apt-get 安装 lnmp
查看>>
焊盘 往同一个方向增加 固定的长度方法 总结
查看>>
eclipse的maven、Scala环境搭建
查看>>
架构师之路(一)- 什么是软件架构
查看>>
jquery的冒泡和默认行为
查看>>
Check failed: error == cudaSuccess (7 vs. 0) too many resources requested for launch
查看>>
USACO 土地购买
查看>>
【原创】远景能源面试--一面
查看>>
B1010.一元多项式求导(25)
查看>>