码迷,mamicode.com
首页 > 编程语言 > 详细

[leetcode] Find Minimum in Rotated Sorted Array @ Python

时间:2014-10-21 05:39:49      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   strong   

source: https://oj.leetcode.com/problems/find-minimum-in-rotated-sorted-array/

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.

 

Solution: Binary Search

Complexity: O(logN)

 

class Solution:
    # @param num, a list of integer
    # @return an integer
    def findMin(self, num):
        min = num[0]
        start, end = 0, len(num) - 1
        while start <= end:
            mid = (start + end)/2
            if num[mid] >= min:
                start = mid + 1
            else:
                min = num[mid]
                end = mid
        return min

 

[leetcode] Find Minimum in Rotated Sorted Array @ Python

标签:style   blog   http   color   io   os   ar   for   strong   

原文地址:http://www.cnblogs.com/asrman/p/4039371.html

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