33. Search in Rotated Sorted Array

本文介绍了一种在旋转排序数组中查找目标值的算法,并通过具体的案例验证了算法的有效性。文章提供了一段Java代码实现,该算法能正确处理旋转数组的各种情况。

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

Suppose an array sorted in ascending order 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.

Subscribe to see which companies asked this question.

 

Solution:

Tips:

judge mid, left and right, be careful.

 

I found that there is something wrong with the code of leet code, such as the test cases below, and the result leet code give is wrong when the element over the half of a reverse order of the array, you can test it by yourself. My code works well.

 

Case 1:

 

Your input

[5,4,3,2,1]
4

Your answer

1

Expected answer

1

 

 

Case 2:

 

Your input

[5,4,3,2,1]
2

Your answer

3

Expected answer

-1

 


Case 3:

 

Your input

[5,4,3,2,1]
1

Your answer

4

Expected answer

-1

 

 

Java Code:

 

public class Solution {
    public int search(int[] nums, int target) {
        if (null == nums || nums.length < 1) {
            return -1;
        }
        int left = 0;
        int right = nums.length - 1;
        int mid = -1;

        while (left <= right ) {
            mid = left + (right - left) / 2;
            if (nums[mid] == target) {
                return mid;
            }

            if (target < nums[mid]) {
                if (target == nums[left]) {
                    return left;
                }
                if (target > nums[left] || nums[mid] < nums[right]) {
                    right = mid - 1;
                } else if (nums[mid] > nums[right]) {
                    left = mid + 1;
                } else {
                    break;
                }
            } else {
                if (target == nums[right]) {
                    return right;
                }
                if (target < nums[right] || nums[mid] > nums[left]) {
                    left = mid + 1;
                } else if (nums[mid] < nums[left]) {
                    right = mid - 1;
                } else {
                    break;
                }
            }
        }
        
        return -1;
    }
}

 

class Solution {
    public int search(int[] nums, int target) {
        int left = 0; 
        int right = nums.length - 1;
        
        while (left <= right) {
            int mid = left + (right - left) / 2;
            if (target == nums[mid]) {
                return mid;
            }
            
            // left < mid </> right
            if (nums[left] < nums[mid]) {
                if (target > nums[mid] || target < nums[left]) {
                    left = mid + 1;
                } else {
                    right = mid - 1;
                }
            } else if (nums[left] > nums[mid]) { // left > mid </> right
                if (target < nums[mid] || target > nums[right]) {
                    right = mid - 1;
                } else {
                    left = mid + 1;
                }
            } else { // left = mid
                left += 1;
            }
        }
        
        return -1;
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值