码迷,mamicode.com
首页 > 编程语言 > 详细

leetCode 81.Search in Rotated Sorted Array II (旋转数组的搜索II) 解题思路和方法

时间:2017-05-25 11:55:11      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:arch   als   determine   art   boolean   ret   etc   size   pos   

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的时候想复杂了,事实上仅仅须要遍历搜索就可以,线性时间。

代码例如以下:

public class Solution {
    public boolean search(int[] nums, int target) {
        for(int i = 0; i < nums.length; i++){
            if(nums[i] == target){
                return true;
            }
        }
        return false;
    }
}



leetCode 81.Search in Rotated Sorted Array II (旋转数组的搜索II) 解题思路和方法

标签:arch   als   determine   art   boolean   ret   etc   size   pos   

原文地址:http://www.cnblogs.com/wzzkaifa/p/6902363.html

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