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

【LeetCode】81. Search in Rotated Sorted Array II

时间:2016-08-27 15:26:39      阅读:99      评论: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.

 这题跟上一题一样,都是二分查找法,但是需要思考,对于时间复杂度,存在重复元素会有影响吗?可以考虑如[1,0,1,1,...,1]这样的数组,时间复杂度最坏会 变成O(N)。

class Solution 
{
public:
    int search(vector<int>& nums, int target)
    {
       int left = 0, right = nums.size()-1;
       while(left <= right)
       {
           int middle = left + ((right-left)>>1);
           if (nums[middle] == target) return true;
           if (nums[middle] < nums[right])
           {
               if (nums[middle] < target && target <= nums[right])left = middle + 1;
               else  right = middle - 1;
           }
           else if (nums[middle] > nums[right])
           {
               if (nums[left] <= target && target < nums[middle])right = middle - 1;
               else left = middle + 1;
           }
           else  right--;
       }
       return false;
    }
};

 

【LeetCode】81. Search in Rotated Sorted Array II

标签:

原文地址:http://www.cnblogs.com/Doctengineer/p/5813035.html

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