-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathspiral-matrix-ii.go
52 lines (50 loc) · 968 Bytes
/
spiral-matrix-ii.go
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
40
41
42
43
44
45
46
47
48
49
50
51
52
package array
// https://leetcode-cn.com/problems/spiral-matrix-ii/
// 1 2 3
// 4 5 6
// 7 8 9
// Time: O(n^2)
// Space: O(n^2), the answer matrix is O(n^2)
func generateMatrix(n int) [][]int {
var matrix [][]int
if n <= 0 {
return matrix
}
// create 2d array
matrix = make([][]int, n)
for i := 0; i < n; i++ {
matrix[i] = make([]int, n)
}
rows, columns := len(matrix), len(matrix[0])
top, bottom := 0, rows-1
left, right := 0, columns-1
k := 1
for top <= bottom && left <= right {
// left -> right
for i := left; i <= right; i++ {
matrix[top][i] = k
k++
}
// top -> bottom
for j := top + 1; j <= bottom; j++ {
matrix[j][right] = k
k++
}
// the case [[1,2,3,4]]
if top < bottom && left < right {
for i := right - 1; i >= left; i-- {
matrix[bottom][i] = k
k++
}
for j := bottom - 1; j >= top+1; j-- {
matrix[j][left] = k
k++
}
}
top++
bottom--
left++
right--
}
return matrix
}