Java可以通過使用二維數組來實現動態行轉列。
首先,定義一個二維數組來存儲原始數據。然后,創建一個新的二維數組,將原始數據的行轉換為新數組的列。
以下是一個示例代碼:
public class DynamicTranspose {
public static void main(String[] args) {
int[][] originalData = {
{1, 2, 3},
{4, 5, 6},
{7, 8, 9}
};
// 計算原始數據的行數和列數
int rows = originalData.length;
int columns = originalData[0].length;
// 創建新的二維數組
int[][] transposedData = new int[columns][rows];
// 將原始數據的行轉換為新數組的列
for (int i = 0; i < rows; i++) {
for (int j = 0; j < columns; j++) {
transposedData[j][i] = originalData[i][j];
}
}
// 打印轉換后的數組
for (int i = 0; i < columns; i++) {
for (int j = 0; j < rows; j++) {
System.out.print(transposedData[i][j] + " ");
}
System.out.println();
}
}
}
運行以上代碼,將輸出:
1 4 7
2 5 8
3 6 9
這樣,就實現了動態行轉列。