-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpiral Matrix
39 lines (34 loc) · 1.11 KB
/
Spiral Matrix
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
class Solution {
public:
vector<int> spiralOrder(vector<vector<int>>& matrix) {
vector<int> result;
if (matrix.empty() || matrix[0].empty()) {
return result;
}
int rows = matrix.size(), cols = matrix[0].size();
int left = 0, right = cols-1, top = 0, bottom = rows-1;
while (left <= right && top <= bottom) {
for (int i = left; i <= right; i++) {
result.push_back(matrix[top][i]);
}
top++;
for (int i = top; i <= bottom; i++) {
result.push_back(matrix[i][right]);
}
right--;
if (top <= bottom) {
for (int i = right; i >= left; i--) {
result.push_back(matrix[bottom][i]);
}
bottom--;
}
if (left <= right) {
for (int i = bottom; i >= top; i--) {
result.push_back(matrix[i][left]);
}
left++;
}
}
return result;
}
};