-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearchIn2dMatrix.cpp
65 lines (54 loc) · 1.27 KB
/
SearchIn2dMatrix.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
#include <iostream>
#include <vector>
using namespace std;
bool searchInRow(vector<vector<int>> &matrix, int target, int row)
{
int n = matrix[0].size();
int st = 0, end = n - 1;
while (st <= end)
{
int mid = st + (end - st) / 2;
if (target == matrix[row][mid])
{
return true;
}
else if (target > matrix[row][mid])
{
st = mid + 1;
}
else
{
end = mid - 1;
}
}
return false;
}
bool searchMatrix(vector<vector<int>> &matrix, int target)
{
int m = matrix.size(), n = matrix[0].size();
int startRow = 0, endRow = m - 1;
while (startRow <= endRow)
{
int midRow = startRow + (endRow - startRow) / 2;
if (target >= matrix[midRow][0] && target <= matrix[midRow][n - 1])
{
return searchInRow(matrix, target, midRow);
}
else if (target >= matrix[midRow][n - 1])
{
startRow = midRow + 1;
}
else
{
endRow = midRow - 1;
}
}
return false;
}
int main()
{
vector<vector<int>> matrix = {{1, 3, 5, 7}, {10, 11, 16, 20}, {23, 30, 34, 60}};
int target = 34;
cout << searchMatrix(matrix, target) << endl;
return 0;
}