题意描述:
给定一个正整数 n,生成一个包含 1 到 n2 所有元素,且元素按顺时针顺序螺旋排列的正方形矩阵。
示例:
输入: 3
输出:
[
[ 1, 2, 3 ],
[ 8, 9, 4 ],
[ 7, 6, 5 ]
]
解题思路:
Alice: 我明白了,,LeetCode里面题目后面加了一个 II
的并不意味这 要比原来的题目难。
Bob: 哈哈哈,也许就像这题一样,这是换汤不换药而已。
Alice: 那个图再贴一下吧。
Bob: 好的。
代码:
Python 方法一:
class Solution:
def generateMatrix(self, n: int) -> List[List[int]]:
i = 0;
j = -1;
idxs = -1
clos = n
rows = n
cnt = 1
tot = n*n
ans = [[0 for x in range(n)] for z in range(n)]
directions = [[0,1], [1,0], [0, -1], [-1, 0]]
while cnt <= tot:
idxs = (idxs + 1) % 4
for x in range(clos):
i += directions[idxs][0]
j += directions[idxs][1]
ans[i][j] = cnt
cnt += 1
rows -= 1
idxs = (idxs + 1) % 4
for x in range(rows):
i += directions[idxs][0]
j += directions[idxs][1]
ans[i][j] = cnt
cnt += 1
clos -= 1
return ans
Java 方法一: 螺旋访问数组,填充元素。
class Solution {
public int[][] generateMatrix(int n) {
int[][] ans = new int[n][n];
int[][] directions = {{0,1},{1,0},{0,-1},{-1,0}};
int i = 0;
int j = -1;
// 二维数组的下标
int idx = -1;
// directions 数组的下标
int cnt = 1;
int tot = n * n;
int cols = n;
int rows = n;
while(cnt <= tot){
// 横向
idx = (idx+1) % 4;
for(int x=0; x<cols; ++x){
i += directions[idx][0];
j += directions[idx][1];
ans[i][j] = cnt;
cnt += 1;
}
rows -= 1;
// 纵向
idx = (idx + 1) % 4;
for(int x=0; x<rows; ++x){
i += directions[idx][0];
j += directions[idx][1];
ans[i][j] = cnt;
cnt += 1;
}
cols -= 1;
}
return ans;
}
}
易错点:
1
2
3
4
[[1]]
[[1,2],[4,3]]
[[1,2,3],[8,9,4],[7,6,5]]
[[1,2,3,4],[12,13,14,5],[11,16,15,6],[10,9,8,7]]
总结: