回 帖 发 新 帖 刷新版面

主题:麻烦帮个忙,把矩阵的行变成列

就是一个矩阵,把行跟列掉换一下,帮帮编一下

回复列表 (共1个回复)

沙发

public static int[][] row2Colb(int[][] matrix){
        
        int row = matrix.length;
        int col = matrix[0].length;
        int[][] temp = new int[row][col] ;
        for(int i = 0;i<row;i++){
            for(int j = 0;j<col;j++){
                temp[j][i] = matrix[i][j];
            }
        }
        return temp;
    }

我来回复

您尚未登录,请登录后再回复。点此登录或注册