旋转图像
旋转图像
给定一个 n × n 的二维矩阵表示一个图像。
将图像顺时针旋转 90 度。
说明:
你必须在原地旋转图像,这意味着你需要直接修改输入的二维矩阵。请不要使用另一个矩阵来旋转图像。
Example 1:
Given input matrix =
[
[1,2,3],
[4,5,6],
[7,8,9]
],
rotate the input matrix in-place such that it becomes:
[
[7,4,1],
[8,5,2],
[9,6,3]
]
Example 2:
Given input matrix =
[
[ 5, 1, 9,11],
[ 2, 4, 8,10],
[13, 3, 6, 7],
[15,14,12,16]
],
rotate the input matrix in-place such that it becomes:
[
[15,13, 2, 5],
[14, 3, 4, 1],
[12, 6, 8, 9],
[16, 7,10,11]
]
先求方阵的转置,再对方阵每一行reverse
The idea was firstly transpose the matrix and then flip it symmetrically. For instance,
1 2 3
4 5 6
7 8 9
after transpose, it will be swap(matrix[i][j], matrix[j][i])
1 4 7
2 5 8
3 6 9
Then flip the matrix horizontally. (swap(matrix[i][j], matrix[i][matrix.length-1-j])
7 4 1
8 5 2
9 6 3
public class Solution {
public void rotate(int[][] matrix) {
for(int i = 0; i<matrix.length; i++){
for(int j = i; j<matrix[0].length; j++){
int temp = 0;
temp = matrix[i][j];
matrix[i][j] = matrix[j][i];
matrix[j][i] = temp;
}
}
for(int i =0 ; i<matrix.length; i++){
for(int j = 0; j<matrix.length/2; j++){
int temp = 0;
temp = matrix[i][j];
matrix[i][j] = matrix[i][matrix.length-1-j];
matrix[i][matrix.length-1-j] = temp;
}
}
}
}
上一篇: iOS文字轮播简单实现(UILabel)
下一篇: js实现简单易用的上下无缝滚动效果
推荐阅读
-
旋转图像
-
数据—将一个N*N矩阵顺时针旋转90度
-
LeetCode - 旋转数组
-
华为2019校招笔试题之旋转方阵(python版)
-
Android 图像处理(类型转换,比例缩放,倒影,圆角)(转) 博客分类: Android Android图像缩放倒影
-
使用Java ImageIO类进行批量图片格式转换(转载) 博客分类: 图像处理 ImageIO
-
opencv学习--opencv实现图像二值化
-
图像拼接遇到module 'cv2.cv2' has no attribute 'xfeatures2d'
-
【OpenCV3.3+Python3.6】超大图像二值化方法
-
OpenCV计算机视觉编程记录(05)---------实现图像锐化