forked from gongluck/CVIP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path704.二分查找.cpp
72 lines (68 loc) · 1.42 KB
/
704.二分查找.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// @before-stub-for-debug-begin
#include <vector>
#include <string>
#include "commoncppproblem704.h"
using namespace std;
// @before-stub-for-debug-end
/*
* @lc app=leetcode.cn id=704 lang=cpp
*
* [704] 二分查找
*/
// @lc code=start
class Solution
{
public:
int search(vector<int> &nums, int target)
{
//[left, right]
/*
int left = 0;
int right = nums.size() - 1;
while (left <= right)
{
int mid = left + ((right - left) >> 1);
int cur = nums[mid];
if (cur == target)
{
return mid;
}
else if (cur < target)
{
left = mid + 1;
continue;
}
else
{
right = mid - 1;
continue;
}
}
return -1;
*/
//[left,right)
int left = 0;
int right = nums.size();
while (left < right)
{
int mid = left + ((right - left) >> 2);
int cur = nums[mid];
if (cur == target)
{
return mid;
}
else if (cur < target)
{
left = mid + 1;
continue;
}
else
{
right = mid;
continue;
}
}
return -1;
}
};
// @lc code=end