博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode-Search in Rotated Sorted Array
阅读量:5806 次
发布时间:2019-06-18

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

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).You are given a target value to search. If found in the array return its index, otherwise return -1.You may assume no duplicate exists in the array.

 

 

public class Solution {    public int search(int[] nums, int target) {        if(nums==null || nums.length==0){            return -1;        }        int low=0;        int high=nums.length-1;                while(low<=high){            int mid=low+(high-low)/2;            if(target
means,target cannot be in [low,mid] since this side is sorted low=mid+1; } else{ high=mid-1; } } } else if(target>nums[mid]){ if(nums[mid]> nums[low]){
//left side is sorted low=mid+1; } else{ if(target>nums[high]){
//target>nums[mid] && target>nums[high]==>means,target cannot be in [mid, high] since this side is sorted high=mid-1; } else{ low=mid+1; } } } else{ return mid; } } return -1; }}

 

转载于:https://www.cnblogs.com/incrediblechangshuo/p/5931674.html

你可能感兴趣的文章
删除设备和驱动器中软件图标
查看>>
第四章 TCP粘包/拆包问题的解决之道---4.1---
查看>>
html语言
查看>>
从源码看集合ArrayList
查看>>
spring-boot支持websocket
查看>>
菜鸟笔记(一) - Java常见的乱码问题
查看>>
我理想中的前端工作流
查看>>
记一次Git异常操作:将多个repository合并到同一repository的同一分支
查看>>
CodeIgniter 3.0 新手捣鼓源码(一) base_url()
查看>>
Chrome 广告屏蔽功能不影响浏览器性能
查看>>
vSphere 6将于2月2日全球同步发表
查看>>
Android状态栏实现沉浸式模式
查看>>
让你的APP实现即时聊天功能
查看>>
iOS 绝对路径和相对路径
查看>>
stat
查看>>
报空指针异常
查看>>
Java_spark简单例子
查看>>
imshow(K)和imshow(K,[]) 的区别
查看>>
poj3190 Stall Reservations
查看>>
CORS 跨域问题, 以及作为api server 的正确配置, 后台 nginx 配置
查看>>