可以使用以下兩種方法對數組進行排序:
import java.util.Arrays;
public class SortArray {
public static void main(String[] args) {
int[] arr = {5, 2, 8, 3, 1};
Arrays.sort(arr); // 對數組進行排序
for (int num : arr) {
System.out.print(num + " ");
}
}
}
輸出結果為:1 2 3 5 8
public class SortArray {
public static void main(String[] args) {
int[] arr = {5, 2, 8, 3, 1};
bubbleSort(arr); // 使用冒泡排序算法對數組進行排序
for (int num : arr) {
System.out.print(num + " ");
}
}
public static void bubbleSort(int[] arr) {
int n = arr.length;
for (int i = 0; i < n - 1; i++) {
for (int j = 0; j < n - i - 1; j++) {
if (arr[j] > arr[j + 1]) {
int temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
}
輸出結果為:1 2 3 5 8