2019-11-10 冒泡排序

冒泡排序

1.原理

其实就是相邻两个数字进行比较,把大的放后面,把大的数字浮上去像泡泡一样
原理图图片来自网络
在这里插入图片描述

2.代码

    private static void sort(int[] array) throws Exception {
        if (array == null || array.length == 0) {
            throw new Exception("the array is null or no element...");
        }
        System.out.println("冒泡排序优化前...");
        int n = array.length;
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n - i - 1; j++) {
                if (array[j] > array[j + 1]) {
                    swap(array, j, j + 1);
                }
            }
            System.out.println("第" + (i + 1) + "轮后: " + Arrays.toString(array));
        }
    }

输出

1轮后: [3, 1, 4, 2, 7, 8, 6, 5, 9]2轮后: [1, 3, 2, 4, 7, 6, 5, 8, 9]3轮后: [1, 2, 3, 4, 6, 5, 7, 8, 9]4轮后: [1, 2, 3, 4, 5, 6, 7, 8, 9]5轮后: [1, 2, 3, 4, 5, 6, 7, 8, 9]6轮后: [1, 2, 3, 4, 5, 6, 7, 8, 9]7轮后: [1, 2, 3, 4, 5, 6, 7, 8, 9]8轮后: [1, 2, 3, 4, 5, 6, 7, 8, 9]9轮后: [1, 2, 3, 4, 5, 6, 7, 8, 9]

当第5轮的时候已经排好序了,所以后面都是无用功。
此时需要优化一下

    private static void optimizeSort(int[] array) throws Exception {
        if (array == null || array.length == 0) {
            throw new Exception("the array is null or no element...");
        }
        System.out.println("冒泡排序优化后...");
        int n = array.length;
        for (int i = 0; i < n; i++) {
            // 设定一个排序完成的标记
            // 若为 true,则表示此次循环没有进行交换,即待排序列已经有序,排序已然完成
            boolean success = true;
            for (int j = 0; j < n - i - 1; j++) {
                if (array[j] > array[j + 1]) {
                    swap(array, j, j + 1);
                    success = false;
                }
            }
            if (success) {
                break;
            }
            System.out.println("第" + (i + 1) + "轮后: " + Arrays.toString(array));
        }
    }

输出

1轮后: [3, 1, 4, 2, 7, 8, 6, 5, 9]2轮后: [1, 3, 2, 4, 7, 6, 5, 8, 9]3轮后: [1, 2, 3, 4, 6, 5, 7, 8, 9]4轮后: [1, 2, 3, 4, 5, 6, 7, 8, 9]

代码来自网络
学习相关链接🔗简书 - 必须掌握的八种基本排序算法:冒泡排序
图侵删

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值