螺旋矩阵
题目链接文章来源地址https://www.toymoban.com/news/detail-808993.html
class Solution {
public:
vector<vector<int>> generateMatrix(int n) {
vector<vector<int>>res(n, vector<int>(n, 0));
int dx[4] = {0, 1, 0, -1}, dy[4] = {1, 0, -1, 0}; //方向偏移数组
int x = 0, y = 0; //当前位置
for(int i = 1, d = 0; i <= n*n; i++)
{
res[x][y] = i;
int a = x + dx[d], b = y + dy[d];
if(a <0 || a == n || b < 0 || b == n || res[a][b]){ //出界或者该位置已经被走过
d = (d + 1) % 4; //更改方向
a = x + dx[d], b = y + dy[d]; //下一个要走的位置
}
x = a, y = b;
}
return res;
}
};
文章来源:https://www.toymoban.com/news/detail-808993.html
到了这里,关于力扣59-螺旋矩阵的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!