leetcode: Search in Rotated Sorted Array

本文探讨了在已排序数组旋转后的场景下,如何应用二分查找算法进行目标值搜索。通过对比和调整查找区间,确保算法正确处理旋转部分的影响,最终返回目标值的索引或指示未找到。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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.



这道题和一般的二分法查找有些不一样,在二分的时候,不能直接比较 A[mid]和target,而应该比较A[mid]和A[start]或A[end]的大小差别

class Solution {
public:


    // 4 5 6 7 8 1 2 3
    int search(int A[], int n, int target) {
        
        int start = 0;
        int end   = n-1;
        
        while (start <= end)
        {
            int mid = (start+end)/2;
            
            /* 
            * the key point solution of this problem is we can not just compare the mid and target
            * instead we should compare the mid and the start and end
            * the following is wrong answer
            */
            
            /*
            if (A[mid] < A[end])  // left side
            {
                if (A[start] > target)    // pivot is on the 45678123  find 1 
                {
                    start = mid+1;
                }
                else
                {
                    end = mid-1;
                }
            }
            else if (A[mid] < target) // right side
            {
                if (A[mid] < A[end])    //  45678123   find 8  || 513 find 5
                {
                    start = mid+1;
                }
                else
                {
                    start = mid+1;
                }
            }
            else
            {
                return mid;
            }
            */
            
            if (A[mid] == target)
                return mid;
            
            
            if (A[mid] < A[end])  //be caureful, here we need to compare mid and end(start) not target
            {
                if (target > A[mid] && target <= A[end])
                {
                    start = mid+1;
                }
                else
                {
                    end = mid-1;
                }
            }
            else
            {
                if (target >= A[start] && target < A[mid])
                {
                    end = mid-1;
                }
                else
                {
                    start = mid+1;
                }
            }
        }
        
        return -1;
    }
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值