-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0054.spiral_matrix.cpp
64 lines (55 loc) · 1.58 KB
/
0054.spiral_matrix.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
#include <cstdio>
#include <iostream>
#include <vector>
using std::vector;
vector<int> spiral_order(vector<vector<int>>& matrix)
{
int m = matrix.size();
int n = matrix[0].size();
vector<int> res;
// 输出以 [l, r] 和 (m, n) 围起来的矩阵的最外圈的数字
auto cycle = [&res, &matrix](auto&& self, int l, int m, int r, int n) -> void {
if (m == 0 || n == 0) return ;
if (l >= m || r >= n) return ;
for (int i = r; i < n; ++i) {
res.push_back(matrix[r][i]);
}
for (int j = l + 1; j < m; ++j) {
res.push_back(matrix[j][n-1]);
}
// 剩下两边都需要判断一下,防止重复输出
if (m - l != 1) {
for (int i = n - 2; i >= r + 1; --i) {
res.push_back(matrix[m-1][i]);
}
}
if (n - r != 1) {
for (int j = m - 1; j >= l + 1; --j) {
res.push_back(matrix[j][l]);
}
}
self(self, l+1, m-1, r+1, n-1);
};
cycle(cycle, 0, m, 0, n);
return res;
}
int main () {
#ifdef LOCAL
freopen("0054.in", "r", stdin);
#endif
int m = 0, n = 0;
while (std::cin >> m >> n) {
vector<vector<int>> matrix(m, vector<int>(n, 0));
for (int i = 0; i < m; ++i) {
for (int j = 0; j < n; ++j) {
std::cin >> matrix[i][j];
}
}
vector<int> res = spiral_order(matrix);
for (int i = 0; i < res.size(); ++i) {
printf(",%d" + !i, res[i]);
}
std::cout << std::endl;
}
return 0;
}