Java 冒泡排序算法示例代码
以下是使用 Java 编写的冒泡排序算法的示例代码:
public class BubbleSort {
public static void main(String[] args) {
int[] arr = {5, 2, 8, 1, 9, 3};
bubbleSort(arr);
System.out.println('排序后的数组:');
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]) {
// 交换arr[j]和arr[j+1]
int temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
}
输出结果为:1 2 3 5 8 9
原文地址: https://www.cveoy.top/t/topic/qzDo 著作权归作者所有。请勿转载和采集!