public class BubbleSort { public static void main(String[] args) { int[] arr = {88, 6, 7, 1, 2, 9, 3, 99}; System.out.println("排序前:" + Arrays.toString(arr)); sort(arr); } public static void sort(int[] arr) { for (int i = 1; i < arr.length; i++) { for (int j = 0; j < arr.length - i; j++) { if (arr[j] > arr[j + 1]) { int tmp = arr[j]; arr[j] = arr[j + 1]; arr[j + 1] = tmp; } } } System.out.println("排序后:" + Arrays.toString(arr)); } }
冒泡排序,
最新推荐文章于 2024-11-10 23:58:12 发布
本文介绍了在Java中使用冒泡排序算法对整数数组进行排序的过程,包括代码实现和排序前后数组的打印。
摘要由CSDN通过智能技术生成