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

Find Minimum in Rotated Sorted Array

时间:2015-01-29 17:41:59      阅读:167      评论: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.

我的解法:

(1)算法思想:

记low=0,high=num.size()-1,用二分法:当num[mid]>num[high]时,low=mid+1;否则,high=mid。直到low=high,返回num[low]即可。

(2)代码如下:


Find Minimum in Rotated Sorted Array

标签:

原文地址:http://blog.csdn.net/littlebob180/article/details/43273275

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!