• Find Minimum in Rotated Sorted Array II


    Problem

    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.

    The array may contain duplicates.

    Example

    Given [4,4,5,6,7,0,1,2] return 0

    题解

    由于此题输入可能有重复元素,因此在num[mid] == num[end]时无法使用二分的方法缩小start或者end的取值范围。此时只能使用递增start/递减end逐步缩小范围。

    C++

    class Solution {
    public:
        /**
         * @param num: a rotated sorted array
         * @return: the minimum number in the array
         */
        int findMin(vector<int> &num) {
            if (num.empty()) {
                return -1;
            }
    
            vector<int>::size_type start = 0;
            vector<int>::size_type end = num.size() - 1;
            vector<int>::size_type mid;
            while (start + 1 < end) {
                mid = start + (end - start) / 2;
                if (num[mid] > num[end]) {
                    start = mid;
                } else if (num[mid] < num[end]) {
                    end = mid;
                } else {
                    --end;
                }
            }
    
            if (num[start] < num[end]) {
                return num[start];
            } else {
                return num[end];
            }
        }
    };

    Java

    public class Solution {
        /**
         * @param num: a rotated sorted array
         * @return: the minimum number in the array
         */
        public int findMin(int[] num) {
            if (num == null || num.length == 0) return Integer.MIN_VALUE;
    
            int lb = 0, ub = num.length - 1;
            // case1: num[0] < num[num.length - 1]
            // if (num[lb] < num[ub]) return num[lb];
    
            // case2: num[0] > num[num.length - 1] or num[0] < num[num.length - 1]
            while (lb + 1 < ub) {
                int mid = lb + (ub - lb) / 2;
                if (num[mid] < num[ub]) {
                    ub = mid;
                } else if (num[mid] > num[ub]){
                    lb = mid;
                } else {
                    ub--;
                }
            }
    
            return Math.min(num[lb], num[ub]);
        }
    }

    源码分析

    注意num[mid] > num[ub]时应递减 ub 或者递增 lb.

    复杂度分析

    最坏情况下 O(n), 平均情况下 O(logn).

  • 相关阅读:
    idea创建项目报错(Maven execution terminated abnormally (exit code 1) )解决方案
    mysql连接查询
    mysql特殊使用
    eclipse发布web
    eclipse启动web应用 报错
    hdu 2018
    atom安装插件失败 latex
    牛腩新闻发布系统——解惑:VS2012验证码加载不出来
    IIS的安装和配置
    InoReader——网页无法打开
  • 原文地址:https://www.cnblogs.com/lyc94620/p/12778677.html
Copyright © 2020-2023  润新知