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

leetcode || 81、Search in Rotated Sorted Array II

时间:2015-04-10 17:53:57      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:二分查找   leetcode   遍历   算法   

problem:

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.

Hide Tags
 Array Binary Search
题意:对于一个有重复值的已序数组,先将其在某一个位置翻折,再用二分法寻找target是否在该数组中

thinking:

(1)出题人想考察二分法,但是该题的最简单的算法是遍历查找法,时间复杂度为O(n)

(2)回到二分法,再确定mid的左、右侧位置的位置时,考虑到有重复元素的出现,所以每次都要沿着mid往两遍遍历,时间复杂度最坏也可以达到O(n)


code:

遍历法:

class Solution {
public:
    bool search(int A[], int n, int target) {
        if(NULL == A || 0 == n)
        	return false;
		for(int i = 0; i < n; ++i)
			if(A[i] == target)
				return true;
		return false;
    }
};


leetcode || 81、Search in Rotated Sorted Array II

标签:二分查找   leetcode   遍历   算法   

原文地址:http://blog.csdn.net/hustyangju/article/details/44981635

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