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

LeetCode: Search in Rotated Sorted Array II [081]

时间:2014-06-03 01:55:38      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:leetcode   算法   面试   

【题目】



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.



【题意】

在“Search in Rotated Sorted Array”的基础上,现在允许数组中出现重复值。问是否仍然能够使用原来的方法来执行搜索。


【思路】

因为重复值的存在,反转边界很可能无法区分,即出现A[0]==A[n-1]的情况,是的原来利用二叉搜索的方法就失效了。


只能使用顺序查找的方法实现本题。


【代码】

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


LeetCode: Search in Rotated Sorted Array II [081],布布扣,bubuko.com

LeetCode: Search in Rotated Sorted Array II [081]

标签:leetcode   算法   面试   

原文地址:http://blog.csdn.net/harryhuang1990/article/details/27638613

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