forked from geemaple/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path81.search-in-rotated-sorted-array-ii.cpp
56 lines (49 loc) · 1.23 KB
/
81.search-in-rotated-sorted-array-ii.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
class Solution {
public:
bool search(vector<int>& nums, int target) {
if (nums.size() == 0)
{
return false;
}
int start = 0;
int end = (int)nums.size() - 1;
while (start + 1 < end) {
int mid = start + (end - start) / 2;
if (nums[mid] == target)
{
return true;
}
if (nums[mid] < nums[end])
{
if (target > nums[mid] && target <= nums[end])
{
start = mid;
}
else
{
end = mid;
}
}
else if (nums[mid] > nums[end])
{
if (target >= nums[start] && target < nums[mid])
{
end = mid;
}
else
{
start = mid;
}
}
else
{
end -= 1;
}
}
if (nums[start] == target || nums[end] == target)
{
return true;
}
return false;
}
};