48. Rotate Image

2022/3/9 6:14:50

本文主要是介绍48. Rotate Image,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

If you could find the secret of image rotate, then this would be a simple problem.

1. If you want to rotate the image by 90 degrees clockwise,then reverse the matrix up to down and then swith symmetry.

2. If you want to rotate the image by 90 degrees anticlockwise,then reverse the matrix left to right and then swith symmetry.

    public void rotate(int[][] matrix) {
        int m = matrix.length, n = matrix[0].length;
        for(int i=0;i<m/2;i++){
            for(int j=0;j<n;j++){
                int temp = matrix[i][j];
                matrix[i][j]=matrix[m-1-i][j];
                matrix[m-1-i][j]=temp;
            }
        }
      
        for(int i=0;i<m;i++){
            for(int j=i; j<n;j++){
                int temp = matrix[i][j];
                matrix[i][j]=matrix[j][i];
                matrix[j][i] = temp;
            }
        }
    }

 



这篇关于48. Rotate Image的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程