下面是Java语言实现冒泡排序的代码:

public class BubbleSort {
    public static void main(String[] args) {
        int[] arr = {5, 3, 8, 6, 4};
        bubbleSort(arr);
        System.out.println(Arrays.toString(arr));
    }

    public static void bubbleSort(int[] arr) {
        int n = arr.length;
        for (int i = 0; i < n - 1; i++) {
            for (int j = 0; j < n - 1 - i; j++) {
                if (arr[j] > arr[j + 1]) {
                    int temp = arr[j];
                    arr[j] = arr[j + 1];
                    arr[j + 1] = temp;
                }
            }
        }
    }
}

运行结果为:[3, 4, 5, 6, 8],即数组已经按照从小到大的顺序排列。

用Java实现冒泡排序

原文地址: https://www.cveoy.top/t/topic/rM3 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录