#154 Find Minimum in Rotated Sorted Array II

Description

Suppose an array of length n sorted in ascending order is rotated between 1 and n times. For example, the array nums = [0,1,4,4,5,6,7] might become:

  • [4,5,6,7,0,1,4] if it was rotated 4 times.
  • [0,1,4,4,5,6,7] if it was rotated 7 times.
    Notice that rotating an array [a[0], a[1], a[2], …, a[n-1]] 1 time results in the array [a[n-1], a[0], a[1], a[2], …, a[n-2]].

Given the sorted rotated array nums that may contain duplicates, return the minimum element of this array.

You must decrease the overall operation steps as much as possible.

Examples

Example 1:

Input: nums = [1,3,5]
Output: 1

Example 2:

Input: nums = [2,2,2,0,1]
Output: 0

Constraints:

n == nums.length
1 <= n <= 5000
-5000 <= nums[i] <= 5000
nums is sorted and rotated between 1 and n times.

思路

大体上和 #153 是一样的思路,区别在于增加了一个step++步骤
也就是当nums[start] == nums[end]的时候,将start向右移动,直到nums[start] != nums[end],再执行原来的递归操作

代码

class Solution {
    public int min(int[] nums, int start, int end){
        int end_num = nums[end];
        int i;
        for(i = start; i < end; i++)
            if(nums[i] != end_num)
                break;
        start = i;
        if(start >= end)
            return nums[start];
        
        int mid = (start + end) / 2;
        
        if(nums[start] < nums[end] || nums[start] > nums[mid])
            return min(nums, start, mid);
        else
            return min(nums, mid + 1, end);
    }
    public int findMin(int[] nums) {
        int len = nums.length - 1;
        return min(nums, 0, len);
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值