美文网首页
Rotate Image

Rotate Image

作者: 朱圆玉润SimpleLife | 来源:发表于2017-04-13 14:03 被阅读0次

private int[][] m;

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;

        }

    }

    m = matrix;

}

public int[][] getMatrix(){

    return m;

}

相关文章

网友评论

      本文标题:Rotate Image

      本文链接:https://www.haomeiwen.com/subject/miebattx.html