81. Search in Rotated Sorted Array II

来源:互联网 发布:淘宝朵以专卖店 编辑:程序博客网 时间:2024/06/06 06:43

problem:

Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand.

(i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2).

Write a function to determine if a given target is in the array.

The array may contain duplicates.


我选择直接遍历不用二分法

class Solution {public:    bool search(vector<int>& nums, int target) {        if(nums.empty())            return false;        for(int i=0; i<nums.size(); i++)            if(nums[i] == target)                return true;        return false;    }};


0 0
原创粉丝点击