首页 > 其他 > 详细

LeetCode Find Peak Element

时间:2015-03-15 15:16:43      阅读:320      评论:0      收藏:0      [点我收藏+]

1.题目


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.


2.解决方案


class Solution {
public:
    int findPeakElement(const vector<int> &num) {
        int left = 0; 
        int right = num.size() - 1;
        
        while(left < right){
            int mid = (left + right) / 2;
            if(num[mid] < num[mid + 1]){
                left = mid + 1;
            }else{
                right = mid;
            }
        }
        if(num[left] < num[right]){
            return right;
        }else{
            return left;
        }
    }
};

思路:因为只需要找到一个最大值,所以这里也可以用二分查找的思想。如果这个值比右边的值小,那么峰值肯定在右侧,所以修改左边的index,如果这个值比右边的大,那么峰值肯定在左侧。注意这里的结束条件,会有两个数,返回大的那个index即可。

http://www.waitingfy.com/archives/1637

LeetCode Find Peak Element

原文:http://blog.csdn.net/fox64194167/article/details/44277185

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