【leetcode刷题笔记】Search in Rotated Sorted Array II

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.


 

题解:如果没有重复的元素,那么就可以根据target是否在某一半而扔掉另外一半。但是如果有重复的元素,就有可能不知道往哪边跳转:

例如A = {1,3,3,3,3,3},经过变换后得到数组{3,1,3,3,3,3},此时A[mid] = 3 = A[left] = A[right],如果target = 1,两边都不能扔,所以不能用二分的方法。

直接用遍历O(n)的方法也可以AC:

复制代码
 1 public class Solution {
 2     public boolean search(int[] A, int target) {
 3         if(A == null || A.length == 0)
 4             return false;
 5         for(int i = 0;i < A.length;i++)
 6             if(target == A[i])
 7                 return true;
 8         return false;
 9     }
10 }
复制代码
posted @   SunshineAtNoon  阅读(138)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
点击右上角即可分享
微信分享提示