共计 596 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以使用 Arrays 类的 sort 方法对二维数组进行排序。首先,需要将二维数组转换为一维数组,然后再对一维数组进行排序。最后,再将排序后的一维数组转换回二维数组。
以下是一个示例代码:
import java.util.Arrays;
public class Main {public static void main(String[] args) {int[][] arr = {{ 5, 7, 1 }, {8, 4, 6 }, {3, 9, 2 } };
int rows = arr.length;
int cols = arr[0].length;
int[] temp = new int[rows * cols];
int index = 0;
for (int i = 0; i < rows; i++) {for (int j = 0; j < cols; j++) {temp[index++] = arr[i][j];
}
}
Arrays.sort(temp);
index = 0;
for (int i = 0; i < rows; i++) {for (int j = 0; j < cols; j++) {arr[i][j] = temp[index++];
}
}
for (int i = 0; i < rows; i++) {for (int j = 0; j < cols; j++) {System.out.print(arr[i][j] + " ");
}
System.out.println();}
}
}
运行上述代码,将输出排序后的二维数组。
丸趣 TV 网 – 提供最优质的资源集合!
正文完