冒泡排序

public class BubbleSort {

    private int[] array;
    private int count;

    public BubbleSort(int[] array) {
        this.array = array;
    }

    /**
     * 冒泡排序就是拿一个数和剩下的数比较找出最小的,
     * 再用同样的方式找出第二小的,
     * 最大比较次数为 n*(n-1)/2
     */
    public void sortMin2Max() {
        int length = array.length;
        if (length > 0) {
            // 拿n-1个数出来,最后一个不用比较
            for (int i = 0; i < length - 1; i++) {
                // 每个数都要跟他后面的数进行比较,所以j的开始位置是i+1
                for (int j = i + 1; j < length; j++) {
                    // 拿第i个数和第j个数进行比较
                    if (array[i] > array[j]) {
                        int temp = array[j];
                        array[j] = array[i];
                        array[i] = temp;
                        count++;

                    }
                }
            }
        }
        System.out.println("比较的次数:" + count);
    }

    /**
     * 从大到小只要改变一下判断条件就行了
     */
    public void sortMax2Min() {
        int length = array.length;
        if (length > 0) {
            for (int i = 0; i < length - 1; i++) {
                for (int j = i + 1; j < length; j++) {
                    if (array[i] < array[j]) {
                        int temp = array[j];
                        array[j] = array[i];
                        array[i] = temp;
                        count++;

                    }
                }
            }
        }
        System.out.println("比较的次数:" + count);
    }

}


输出看看

public class Client {

    public static void main(String[] args) {

        int[] array = {3, 9, 5, 6, 1, 2, 6, 7, 0};
        BubbleSort sort = new BubbleSort(array);
        System.out.println("从大到小排序:");
        sort.sortMax2Min();
        print(array);
        System.out.println("\n从小到大排序:");
        sort.sortMin2Max();
        print(array);
    }

    private static void print(int[] array) {
        for (int i = 0; i < array.length; i++) {
            System.out.print(array[i] + "   ");
        }
    }
}

从大到小排序:
比较的次数:14
9   7   6   6   5   3   2   1   0   
从小到大排序:
比较的次数:44
0   1   2   3   5   6   6   7   9   

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值