LeetCode---153. Find Minimum in Rotated Sorted Array

题目

给出一个旋转数组,找出旋转数组中最小的值。如:

Example 1:

Input: [3,4,5,1,2]
Output: 1
Example 2:

Input: [4,5,6,7,0,1,2]
Output: 0

Python题解

class Solution(object):
    def findMin(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        left, right = 0, len(nums) - 1
        while left < right:
            mid = (left + right) // 2
            if nums[mid] > nums[right]:
                left = mid + 1
            else:
                right = mid
        return nums[left]

猜你喜欢

转载自blog.csdn.net/leel0330/article/details/80520543
今日推荐