主题:麻烦帮个忙,把矩阵的行变成列
chenxinfeng2007
[专家分:0] 发布于 2007-11-01 16:27:00
就是一个矩阵,把行跟列掉换一下,帮帮编一下
回复列表 (共1个回复)
沙发
sjhlovejava [专家分:1690] 发布于 2007-11-02 11:52:00
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;
}
我来回复