170 - 154 寻找旋转排序数组中的最小值2 - 006
Last updated
Was this helpful?
Last updated
Was this helpful?
假设按照升序排序的数组在预先未知的某个点上进行了旋转。
( 例如,数组 [0,1,2,4,5,6,7] 可能变为 [4,5,6,7,0,1,2] )。
请找出其中最小的元素。
注意数组中可能存在重复的元素。
示例 1:
输入: [1,3,5] 输出: 1
示例 2:
输入: [2,2,2,0,1] 输出: 0
说明:
这道题是 寻找旋转排序数组中的最小值 的延伸题目。
允许重复会影响算法的时间复杂度吗?会如何影响,为什么?
关键就是如果nums[mid]==nums[right]
的处理,要令right-1
Runtime: 56 ms, faster than 77.27% of Python3 online submissions for Find Minimum in Rotated Sorted Array II.
Memory Usage: 13.1 MB, less than 100.00% of Python3 online submissions for Find Minimum in Rotated Sorted Array II.
Runtime: 4 ms, faster than 86.96% of Go online submissions for Find Minimum in Rotated Sorted Array II.
Memory Usage: 3.1 MB, less than 100.00% of Go online submissions for Find Minimum in Rotated Sorted Array II.
Runtime: 48 ms, faster than 95.55% of JavaScript online submissions for Find Minimum in Rotated Sorted Array II.
Memory Usage: 34 MB, less than 63.64% of JavaScript online submissions for Find Minimum in Rotated Sorted Array II.