Leetcode81. 搜索旋转排序数组 II

Posted 穿过雾的阴霾

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode81. 搜索旋转排序数组 II相关的知识,希望对你有一定的参考价值。

class Solution 
public:
    bool check(vector<int> &nums,int target,int l,int r)//[l,r]区间查找target
    
        while(l<r)
        
            int mid=(l+r+1)>>1;
            if(target>=nums[mid])   l=mid;
            else r=mid-1;
        
        return nums[l]==target;
    
    bool search(vector<int>& nums, int target) 
        int n=nums.size()-1;
        while(n&&nums[n]==nums[0])  n--;
        if(nums[n]>nums[0]) //说明只有一段单调的
            return check(nums,target,0,n);
        int l=0,r=n;
        while(l<r)
        
            int mid=(l+r)>>1;
            if(nums[mid]>=nums[0])   l=mid+1;
            else r=mid;
        
        //根据target与nums[0]的关系,判断二分区间
        if(target>=nums[0])  return check(nums,target,0,l-1);
        else return check(nums,target,l,n);
    
;

以上是关于Leetcode81. 搜索旋转排序数组 II的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 81.搜索旋转排序数组 II

LeetCode 81——搜索旋转排序数组 II

LeetCode 81. 搜索旋转排序数组 II

Python描述 LeetCode 81. 搜索旋转排序数组 II

Python描述 LeetCode 81. 搜索旋转排序数组 II

Python描述 LeetCode 81. 搜索旋转排序数组 II