lc 搜索旋转排序数组

Posted friskypuppy

tags:

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

链接:https://leetcode-cn.com/problems/search-in-rotated-sorted-array/

代码:

技术图片
#include <algorithm>
class Solution {
public:
    
    int search(vector<int>& nums, int target) {
        int n = nums.size();
        if(n == 0) return -1;
        if(n == 1) return (nums[0]==target) ? 0 : -1;
        int l = 0;
        int h = n-1;
        while(l <= h) {
            int mid = (l+h) >> 1;
            if(nums[mid] == target) return mid;
            if(nums[0] <= nums[mid]) {
                if(nums[0] <= target && target < nums[mid]) {
                    h = mid-1;
                }
                else {
                    l = mid+1;
                }
            }
            else {
                if(nums[mid] < target && target <= nums[n-1]) {
                    l = mid+1;
                }
                else {
                    h = mid-1;
                }
            }
        }
        return -1;
    }
};
View Code

思路:二分的本质是能够排除一半的元素所以能够加快速度,所以仔细思考能否舍弃不可能解。

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

java刷题--33搜索旋转排序数组

搜索旋转排序数组[特殊二分]

搜索旋转排序数组[特殊二分]

leetcode-----33. 搜索旋转排序数组

62. 搜索旋转排序数组

搜索旋转排序数组