-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathspiral_matrix_ii.cpp
32 lines (27 loc) · 989 Bytes
/
spiral_matrix_ii.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
class Solution {
public:
vector<vector<int>> generateMatrix(int n) {
vector<vector<int>> spiral(n, vector<int>(n,0));
int row_begin = 0, row_end = n-1, col_begin = 0, col_end = n-1;
int c = 1;
while(row_begin <= row_end and col_begin <= col_end) {
for(auto i=col_begin; i<=col_end; i++)
spiral[row_begin][i] = c++;
row_begin++;
for(auto i=row_begin; i<=row_end; i++)
spiral[i][col_end] = c++;
col_end--;
if(row_begin <= row_end) {
for(auto i=col_end; i>=col_begin; i--)
spiral[row_end][i] = c++;
row_end--;
}
if(col_begin <= col_end) {
for(auto i=row_end; i>=row_begin; i--)
spiral[i][col_begin] = c++;
col_begin++;
}
}
return spiral;
}
};