首页 > 其他 > 详细

Leetcode Search in Rotated Sorted Array II

时间:2014-07-03 22:00:19      阅读:339      评论:0      收藏:0      [点我收藏+]

Follow up for "Search in Rotated Sorted Array":
What if duplicates are allowed?

Would this affect the run-time complexity? How and why?

Write a function to determine if a given target is in the array.

class Solution {
public:
    bool search(int A[], int n, int target) {
        int left = 0, right = n-1;
        while(left <= right){
            int mid = left+(right-left)/2;
            if(A[mid] == target) return true;
            if(A[left]< A[mid]){
                if(A[left] <=target && A[mid] > target) right = mid-1;
                else left  = mid+1;
            }else if(A[left] > A[mid]){
                if(A[mid] < target && target <= A[right]) left = mid+1;
                else right =mid-1;
            }else left++;
        }
        return false;
    }
};

 

Leetcode Search in Rotated Sorted Array II,布布扣,bubuko.com

Leetcode Search in Rotated Sorted Array II

原文:http://www.cnblogs.com/xiongqiangcs/p/3820966.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!