-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdiagonal.cpp
163 lines (138 loc) · 3.72 KB
/
diagonal.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
// {"category": "Matrix", "notes": "Find a number in sorted matrix"}
#include <SDKDDKVer.h>
#include <stdio.h>
#include <tchar.h>
#include <iostream>
#include <vector>
#include <Windows.h>
using namespace std;
//------------------------------------------------------------------------------
//
// In a 2-D matrix, every row is increasingly sorted from left to right, and
// every column is increasingly sorted from top to bottom. Please implement a
// function to check whether a number is in such a matrix or not.
//
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//
// Implementation
//
//------------------------------------------------------------------------------
template<class Object>
bool find(
vector<vector<Object>> matrix,
Object object,
int row1,
int col1,
int row2,
int col2)
{
if (object < matrix[row1][col1] ||
object > matrix[row2][col2])
{
return false;
}
if (object == matrix[row1][col1] ||
object == matrix[row2][col2])
{
return true;
}
const int c_row1 = row1;
const int c_col1 = col1;
const int c_row2 = row2;
const int c_col2 = col2;
int midRow = (row1 + row2) / 2;
int midCol = (col1 + col2) / 2;
while (
(row1 != midRow || col1 != midCol) &&
(row2 != midRow || col2 != midCol))
{
if (object == matrix[midRow][midCol])
{
return true;
}
if (object < matrix[midRow][midCol])
{
row2 = midRow;
col2 = midCol;
}
else
{
row1 = midRow;
col1 = midCol;
}
midRow = (row1 + row2) / 2;
midCol = (col1 + col2) / 2;
}
if (midRow < static_cast<int>(matrix.size() - 1))
{
if (find(matrix, object, midRow + 1, c_col1, c_row2, midCol))
{
return true;
}
}
if (midCol < static_cast<int>(matrix[0].size() - 1))
{
if (find(matrix, object, c_row1, midCol + 1, midRow, c_col2))
{
return true;
}
}
return false;
}
//------------------------------------------------------------------------------
//
// Unit tests
//
//------------------------------------------------------------------------------
int _tmain(int argc, _TCHAR* argv[])
{
const int array1[][4] =
{
{1, 2, 8, 9},
{2, 4, 9, 12},
{4, 7, 10, 13},
{6, 8, 11, 15},
};
vector<vector<int>> matrix1;
for (int r = 0; r < ARRAYSIZE(array1); r++)
{
vector<int> row1;
for (int c = 0; c < ARRAYSIZE(array1[0]); c++)
{
row1.push_back(array1[r][c]);
}
matrix1.push_back(row1);
}
vector<int> row2;
row2.push_back(1);
vector<vector<int>> matrix2;
matrix2.push_back(row2);
struct TestCase
{
vector<vector<int>> matrix;
int value;
bool found;
};
const TestCase tests[] =
{
{matrix1, 7, true},
{matrix1, 5, false },
{matrix1, 8, true },
{matrix1, 15, true },
{matrix1, 0, false},
{matrix1, 16, false},
{matrix2, 1, true},
{matrix2, 2, false},
};
for (int i = 0; i < ARRAYSIZE(tests); i++)
{
int value = tests[i].value;
int row2 = static_cast<int>(tests[i].matrix.size() - 1);
int col2 = static_cast<int>(tests[i].matrix[0].size() - 1);
bool found = find(tests[i].matrix, value, 0, 0, row2, col2);
cout << (found == tests[i].found ? "PASS: " : "FAIL: ");
cout << value << " is" << (found ? "" : " not") << " found." << endl;
}
return 0;
}