-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathLC_74_Search2DMatrix.cpp
51 lines (42 loc) · 1.44 KB
/
LC_74_Search2DMatrix.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
/* https://leetcode.com/problems/search-a-2d-matrix/
* 74. Search a 2D Matrix
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties:
Integers in each row are sorted from left to right.
The first integer of each row is greater than the last integer of the previous row.
*/
class Solution {
public:
bool searchMatrix(vector<vector<int>>& matrix, int target) {
int r = matrix.size();
int c = matrix[0].size();
/*
int smallest_ele = matrix[0][0];
int largest_ele = matrix[r-1][c-1];
if(target == matrix[0][0] ) return true;
if( target < smallest_ele || target > largest_ele) return false;
int i=0;
int j = c-1; // top right most element
while(i<r && j>=0)
{
if(target == matrix[i][j]) return true;
else if(target > matrix[i][j])
i++;
else
j--;
}
return false;
*/
/****** A2: iterative Binary Search *******/
int l=0;
int h=r*c-1;
while(l <= h){
int mid = (l)+(h-l)/2;
if(target == matrix[mid/c][mid%c]) return true;
else if(target < matrix[mid/c][mid%c])
h=mid-1;
else
l=mid+1;
}
return false;
}// end
};