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

[leetcode]Find Minimum in Rotated Sorted Array @ Python

时间:2014-10-23 16:10:21      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   sp   div   2014   

原题地址:https://oj.leetcode.com/problems/find-minimum-in-rotated-sorted-array/

解题思路:话说leetcode上面的二分查找题目真的不少啊。下图是这道题的数组的两种情况,分别去处理就可以了。

 

bubuko.com,布布扣

class Solution:
    # @param num, a list of integer
    # @return an integer
    def findMin(self, num):
        L = 0; R = len(num)-1
        while L < R and num[L] > num[R]:
            M = (L+R)/2
            if num[M] < num[R]:
                R = M
            else:
                L = M+1
        return num[L]
        

 

[leetcode]Find Minimum in Rotated Sorted Array @ Python

标签:style   blog   http   color   io   ar   sp   div   2014   

原文地址:http://www.cnblogs.com/zuoyuan/p/4045742.html

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