📜  用于冒泡排序的Java程序(1)

📅  最后修改于: 2023-12-03 15:27:10.343000             🧑  作者: Mango

用于冒泡排序的Java程序

冒泡排序是一种简单的排序算法,它的基本思想是通过不断比较相邻的元素,如果顺序不对则交换它们的位置,一直这样进行直到所有元素都被排序。以下是一个用于冒泡排序的Java程序。

代码片段:
public class BubbleSort {
    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;
                }
            }
        }
    }

    public static void main(String[] args) {
        int[] arr = {5, 1, 4, 2, 8};
        bubbleSort(arr);
        System.out.println("排序后的数组:");
        for (int i = 0; i < arr.length; i++) {
            System.out.print(arr[i] + " ");
        }
    }
}
代码说明
  • static void bubbleSort(int[] arr) 函数实现了冒泡排序算法。它接受一个整数数组 arr 作为参数,对该数组进行原地排序。排序后,数组的所有元素将按非降序排列。
  • main() 函数中我们定义了一个整数数组 {5, 1, 4, 2, 8},然后调用冒泡排序函数排序该数组。最后,我们打印排序后的数组。运行该程序的输出如下所示:
排序后的数组:
1 2 4 5 8