-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearch_in_rotated_sorted_array_II.cpp
More file actions
39 lines (38 loc) · 1.02 KB
/
Search_in_rotated_sorted_array_II.cpp
File metadata and controls
39 lines (38 loc) · 1.02 KB
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
#include <iostream>
#include <vector>
using namespace std;
class Solution {
public:
bool search(vector<int>& nums, int target) {
int low = 0;
int high = nums.size() - 1;
while(low <= high)
{
int mid = (low + high) / 2;
if(nums[mid] == target)
{
return true;
}
else if(nums[mid] == nums[high] && nums[mid] == nums[low])
{
low = low + 1;
high = high - 1;
}
else if(nums[low] <= nums[mid])
{
if(nums[low] <= target && target <= nums[mid])
high = mid - 1;
else
low = mid + 1;
}
else
{
if(nums[mid] <= target && target <= nums[high])
low = mid + 1;
else
high = mid - 1;
}
}
return false;
}
};