forked from changqing16/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path33.cpp
More file actions
37 lines (35 loc) · 827 Bytes
/
33.cpp
File metadata and controls
37 lines (35 loc) · 827 Bytes
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
#include <stdio.h>
#include <vector>
using namespace std;
int search(vector<int> &nums, int target)
{
int low = 0;
int high = nums.size() - 1;
while (low <= high)
{
int mid = low + (high - low) / 2;
if (nums[mid] == target)
return mid;
else if (nums[low] <= nums[mid])
{ // left half is sorted
if (target >= nums[low] && target < nums[mid])
high = mid - 1;
else
low = mid + 1;
}
else
{ // right half is sorted
if (target > nums[mid] && target <= nums[high])
low = mid + 1;
else
high = mid - 1;
}
}
return -1;
}
int main()
{
vector<int> nums = {1, 3, 5};
int ans = search(nums, 1);
printf("%d", ans);
}