1 Star 0 Fork 1

陈鹏/leecode with labuladong

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
59.螺旋矩阵-ii.cpp 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
陈鹏 提交于 2022-07-16 16:02 . 矩阵遍历技巧
// @before-stub-for-debug-begin
#include <vector>
#include <string>
#include "commoncppproblem59.h"
using namespace std;
// @before-stub-for-debug-end
/*
* @lc app=leetcode.cn id=59 lang=cpp
*
* [59] 螺旋矩阵 II
*/
// @lc code=start
class Solution {
public:
vector<vector<int>> generateMatrix(int n) {
vector<vector<int> > res(n);
for (auto &row : res) {
row.resize(n);
}
int top = 0;
int left = 0;
int bottom = n - 1;
int right = n - 1;
int num = 0;
while (num < n * n) {
for (int i = left; i <= right && num < n*n; i++) {
num++;
res[top][i] = num;
}
top++;
for (int i = top; i <= bottom && num < n*n; i++) {
num++;
res[i][right] = num;
}
right--;
for (int i = right; i >= left && num < n*n; i--) {
num++;
res[bottom][i] = num;
}
bottom--;
for (int i = bottom; i >= top && num < n*n; i--) {
num++;
res[i][left] = num;
}
left++;
}
return res;
}
};
// @lc code=end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Chan1998/leecode-with-labuladong.git
git@gitee.com:Chan1998/leecode-with-labuladong.git
Chan1998
leecode-with-labuladong
leecode with labuladong
master

搜索帮助