-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path59.cpp
35 lines (31 loc) · 871 Bytes
/
59.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
class Solution {
public:
vector<vector<int>> generateMatrix(int n) {
vector<vector<int>> matrix;
matrix.resize(n, std::vector<int>(n, -1));
int top = 0;
int bottom = n-1;
int left = 0;
int right = n-1;
int val = 1;
while (left<=right) {
for (int i = left;i<=right;i++) {
matrix[left][i] = val++;
}
top++;
for (int i = top;i<=bottom;i++) {
matrix[i][right] = val++;
}
right--;
for (int i = right;i>=left;i--) {
matrix[bottom][i] = val++;
}
bottom--;
for (int i = bottom;i>=top;i--) {
matrix[i][left] = val++;
}
left++;
}
return matrix;
}
};