Search in Rotated Sorted Array

Posted binryang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Search in Rotated Sorted Array相关的知识,希望对你有一定的参考价值。

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.

    public int search(int[] nums, int target) {
        int j = nums.length-1;
        int i = 0;
        while (i<=j){
            int middle = (i+j)/2;
            if (nums[middle]==target){
                return middle;
            }
            else if (nums[middle]>=nums[i]){
                if (nums[middle]>target&&target>=nums[i]){
                    j = middle-1;
                }
                else{
                    i = middle+1;
                }
            }
            else {
                if (nums[middle]<target&&target<=nums[j]){
                    i = middle +1;
                }
                else {
                    j = middle -1;
                }
            }
        }
        return -1;
    }

以上是关于Search in Rotated Sorted Array的主要内容,如果未能解决你的问题,请参考以下文章

Search in Rotated Sorted Array

33. Search in Rotated Sorted Array

33. Search in Rotated Sorted Array

33. Search in Rotated Sorted Array

Leetcode Search in Rotated Sorted Array

33. Search in Rotated Sorted Array *HARD*