码迷,mamicode.com
首页 > 其他好文 > 详细

33. Search in Rotated Sorted Array

时间:2015-04-17 21:50:56      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

题目:

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.

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

题解:Rotated array中查找值,使用Binary Search,要注意数组是向左shift或者是向右shift,保持在一个单调递增的部分进行查找。

简单的三种情况 - 1) 不平移   1234567

        2) 向左3位  4567123

           3) 向右3位   5671234 

时间复杂度 O(logn), 空间复杂度 O(1)

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

 

测试:

33. Search in Rotated Sorted Array

标签:

原文地址:http://www.cnblogs.com/yrbbest/p/4435871.html

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