博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
154. Find Minimum in Rotated Sorted Array II
阅读量:6122 次
发布时间:2019-06-21

本文共 1427 字,大约阅读时间需要 4 分钟。

题目:

Follow up for "Find Minimum in Rotated Sorted Array":

What if duplicates are allowed?

Would this affect the run-time complexity? How and why?

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.

链接: 

题解:

find min in rotated sorted array ii, 这道题目是上道题的follow up,包括了数组中有重复数字的情况。主要思路和Search in Rotated Sorted Array一样,可以使用Decision Tree决策树,划分清楚每种条件,然后解题。 这里可以先判定nums[lo] < nums[hi]时,nums[lo]为最小值,接下来根据nums[mid]与nums[hi]的关系来决定并且update min。其实还能再写得简洁一些。

Time Complexity - O(n),Space Complexity - O(1)。

public class Solution {    public int findMin(int[] nums) {        if(nums == null || nums.length == 0)            return Integer.MAX_VALUE;        int lo = 0, hi = nums.length - 1, min = Integer.MAX_VALUE;                while(lo <= hi) {            if(nums[lo] < nums[hi])                return nums[lo];            else {                int mid = lo + (hi - lo) / 2;                if(nums[mid] < nums[hi]) {                    min = Math.min(nums[mid], min);                    hi = mid;                } else if(nums[mid] > nums[hi]) {                    min = Math.min(nums[hi], min);                    lo = mid + 1;                } else {                    min = Math.min(nums[mid], min);                    hi--;                }            }        }                return min;    }}

 

测试:

转载地址:http://icwua.baihongyu.com/

你可能感兴趣的文章
如何对网站进行归档
查看>>
数据库之MySQL
查看>>
2019/1/15 批量删除数据库相关数据
查看>>
数据类型的一些方法
查看>>
Mindjet MindManager 2019使用教程:
查看>>
游戏设计的基本构成要素有哪些?
查看>>
详解 CSS 绝对定位
查看>>
AOP
查看>>
我的友情链接
查看>>
NGUI Label Color Code
查看>>
.NET Core微服务之基于Polly+AspectCore实现熔断与降级机制
查看>>
vue组件开发练习--焦点图切换
查看>>
浅谈OSI七层模型
查看>>
Webpack 2 中一些常见的优化措施
查看>>
移动端响应式
查看>>
python实现牛顿法求解求解最小值(包括拟牛顿法)【最优化课程笔记】
查看>>
js中var、let、const的区别
查看>>
腾讯云加入LoRa联盟成为发起成员,加速推动物联网到智联网的进化
查看>>
从Python2到Python3:超百万行代码迁移实践
查看>>
Windows Server已可安装Docker,Azure开始支持Mesosphere
查看>>