码迷,mamicode.com
首页 > 编程语言 > 详细

lc 搜索旋转排序数组

时间:2020-05-23 00:11:15      阅读:50      评论:0      收藏:0      [点我收藏+]

标签:show   com   style   http   solution   vector   targe   alt   思路   

链接: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 搜索旋转排序数组

标签:show   com   style   http   solution   vector   targe   alt   思路   

原文地址:https://www.cnblogs.com/FriskyPuppy/p/12940471.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!