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

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

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.

思路:duplicate采取夹逼。其他跟I一样。3 3 1 3 -》 夹逼3 1 3 -> 3 1 -> 1

public class Solution {    public int findMin(int[] nums) {    if(nums==null||nums.length==0)return 0;    int low=0,high=nums.length-1;    while(low
=nums[high]){ int mid=low+(high-low)/2; if(nums[mid]
nums[high]){ low=mid+1; }else{ if(nums[mid]==nums[low])low++; else if(nums[mid]==nums[high])high--; } } return nums[low];}}

 

转载于:https://www.cnblogs.com/Machelsky/p/5955243.html

你可能感兴趣的文章
Competing Consumers Pattern (竞争消费者模式)
查看>>
Android面试收集录15 Android Bitmap压缩策略
查看>>
PHP魔术方法之__call与__callStatic方法
查看>>
ubuntu 安装后的配置
查看>>
web前端之路,js的一些好书(摘自聂微东 )
查看>>
【模板】对拍程序
查看>>
【转】redo与undo
查看>>
解决升级系统导致的 curl: (48) An unknown option was passed in to libcurl
查看>>
Java Session 介绍;
查看>>
spoj TBATTLE 质因数分解+二分
查看>>
Django 模型层
查看>>
dedecms讲解-arc.listview.class.php分析,列表页展示
查看>>
Extjs6 经典版 combo下拉框数据的使用及动态传参
查看>>
【NodeJS】http-server.cmd
查看>>
研磨JavaScript系列(五):奇妙的对象
查看>>
面试题2
查看>>
selenium+java iframe定位
查看>>
P2P综述
查看>>
第五章 如何使用Burp Target
查看>>
Sprint阶段测试评分总结
查看>>