Files
LeetCode-Go/leetcode/0048.Rotate-Image/48. Rotate Image.go
2020-08-07 17:06:53 +08:00

27 lines
556 B
Go

package leetcode
func rotate(matrix [][]int) {
row := len(matrix)
if row <= 0 {
return
}
column := len(matrix[0])
// rotate by diagonal 对角线变换
for i := 0; i < row; i++ {
for j := i + 1; j < column; j++ {
tmp := matrix[i][j]
matrix[i][j] = matrix[j][i]
matrix[j][i] = tmp
}
}
// rotate by vertical centerline 竖直轴对称翻转
halfColumn := column / 2
for i := 0; i < row; i++ {
for j := 0; j < halfColumn; j++ {
tmp := matrix[i][j]
matrix[i][j] = matrix[i][column-j-1]
matrix[i][column-j-1] = tmp
}
}
}