首页 > 代码库 > LeetCode: Search in Rotated Sorted Array II [081]
LeetCode: Search in Rotated Sorted Array II [081]
【题目】
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; } };
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。