1
我對這段代碼有困難。我試圖返回一個2d,這是輸入數組的反轉。 我不知道如何正確編碼。也許有人可能會有幾點建議通過二維數組循環
public class arrays {
int[][] transpose(int[][] a) {
int[][] good = new int[a.length][a.length]; /* assign dimension, I want it to be the same as input */
for (int i = 0; i < a.length; i++) {
for (int k = 0; k < a[k].length; k++) { // //nested loop to go through the rows and columns
good[i][k] = a[k][i]; // /// switch elements
}
}
return good;
}
}
謝謝!非常有幫助 – tim