首页 > 编程语言 > 详细

[leetcode] Find Minimum in Rotated Sorted Array @ Python

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

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

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

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