Leetcode 54. Spiral Matrix

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

Spiral Matrix

2. Solution

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;
int rows = matrix.size();
if(rows == 0) {
return result;
}
int columns = matrix[0].size();
int total = rows * columns;
for(int i = 0, j = 0; result.size() < total; i++, j++) {
if(result.size() < total) {
// top
for(int k = j; k < columns - j; k++) {
result.push_back(matrix[i][k]);
}
}
if(result.size() < total) {
// right
for(int k = i + 1; k < rows - i; k++) {
result.push_back(matrix[k][columns - 1 - j]);
}
}
if(result.size() < total) {
// bottom
for(int k = columns - 2 - j; k >= j; k--) {
result.push_back(matrix[rows - 1 - i][k]);
}
}
if(result.size() < total) {
// left
for(int k = rows - 2 - i; k > i; k--) {
result.push_back(matrix[k][j]);
}
}
}
return result;
}
};

Reference

  1. https://leetcode.com/problems/spiral-matrix/description/
如果有收获,可以请我喝杯咖啡!