java study(冒泡,选择,插入三种排序方式)

本文详细介绍了Java编程中的冒泡排序、选择排序和插入排序三种常见排序算法,包括它们的基本原理和实现过程。
摘要由CSDN通过智能技术生成

冒泡排序

在这里插入图片描述

package com.smile.test.sort.bubble;

/**
 * 冒泡排序  时间复杂度O(n^2)
 */

public class Bubble {
    static void sort(Comparable[] a){
        for (int i = a.length-1; i>0; i--){
            for (int j=0; j<i; j++){
                if(greater(a[j],a[j+1])){
                    changeIndex(a, j, j+1);
                }
            }

        }
    }
    private static boolean greater(Comparable a,Comparable b){
        return a.compareTo(b) > 0;
    }
    private static void changeIndex(Comparable[] a,int i,int j){
        Comparable temp;
        temp = a[i];
        a[i] = a[j];
        a[j] = temp;
    }
}
import java.util.Arrays;

public class BubbleTest {
    public static void main(String[] args) {
        Integer[] a = {6,5,4,3,2,1};
        Bubble.sort(a);
        System.out.println(Arrays.toString(a));
    }
}

[1, 2, 3, 4, 5, 6]

Process finished with exit code 0

选择排序

在这里插入图片描述

public class Selections {
    static void sort(Comparable[] a){
        for (int i = 0; i <= a.length - 2; i++){
            int minIndex = i;
            for (int j = i+1; j < a.length; j++){
                if (greater(a[minIndex], a[j])){
                    minIndex = j;
                }
            }
            changeIndex(a, minIndex,i);
        }
    }
    // 比较a,b的大小
    private static boolean greater(Comparable a,Comparable b){
        return a.compareTo(b) > 0;
    }
    // 交换索引i 和 索引j处的值
    private static void changeIndex(Comparable[] a,int i,int j){
        Comparable temp;
        temp = a[i];
        a[i] = a[j];
        a[j] = temp;
    }
}
import java.util.Arrays;

public class SelectionsTest {
    public static void main(String[] args) {
        Integer[] arr = {4,5,8,9,6,3,1};
        Selections.sort(arr);
        System.out.println(Arrays.toString(arr));
    }
}
[1, 3, 4, 5, 6, 8, 9]

Process finished with exit code 0

插入排序

在这里插入图片描述

public class InsertSort {
    public static void sort(Comparable[] a){
        for (int i = 1; i < a.length; i++){
            for(int j = i; j>0; j--){
                if (greater(a[j-1], a[j])){
                    changeIndex(a,j-1,j);
                }
            }
        }
    }
    // 比较a,b的大小
    private static boolean greater(Comparable a,Comparable b){
        return a.compareTo(b) > 0;
    }
    // 交换索引i 和 索引j处的值
    private static void changeIndex(Comparable[] a,int i,int j){
        Comparable temp;
        temp = a[i];
        a[i] = a[j];
        a[j] = temp;
    }
}
import java.util.Arrays;

public class InsertTest {
    public static void main(String[] args) {
        Integer[] a = {4,3,2,10,12,1,5,6};
        InsertSort.sort(a);
        System.out.println(Arrays.toString(a));
    }
}
[1, 2, 3, 4, 5, 6, 10, 12]

Process finished with exit code 0
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值