首页 > 其他 > 详细

[leetcode] Find Minimum in Rotated Sorted Array

时间:2015-08-19 09:24:03      阅读:185      评论:0      收藏:0      [点我收藏+]

 题目:

Suppose a sorted array is rotated at some pivot unknown to you beforehand.

(i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2).

Find the minimum element.

You may assume no duplicate exists in the array.

 

解题思路:

在做过一定面试题的前提下,看到这种在一个与排序有关的数列里找某个数,应该有感觉与二分查找有关。

然后尝试一下一下可以发现,

如果数组的中位数大于末尾数,则最小数应该在后半段。

如果数组的中位数小于末尾数,则最小数应该在前半段或者是中位数。

 

代码如下

public int findMin(int[] num) {
        int low = 0, high = num.length - 1;
        while (low < high && num[low] >= num[high]) {
            int mid = (low + high) / 2;
            if (num[mid] > num[high])
                low = mid + 1;
            else
                high = mid;
        }
        return num[low];
    }

 

[leetcode] Find Minimum in Rotated Sorted Array

原文:http://www.cnblogs.com/fengmangZoo/p/4741183.html

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