栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

排序-冒泡排序

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

排序-冒泡排序

public class Bubble {
    public static void sort(Comparable[] a){

        for(int i=a.length-1;i>0;i--){
            for(int j=0;j0;
    }



    private static void exch(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[] arr={4,5,2,6,1,3};
       Bubble.sort(arr);

        System.out.println(Arrays.toString(arr));
    }
}

结果:

D:javajdkjdk-14.0.2binjava.exe "-javaagent:D:ideaIC-2021.2.2IDEAIntelliJ IDEA 2020.1.1libidea_rt.jar=50316:D:ideaIC-2021.2.2IDEAIntelliJ IDEA 2020.1.1bin" -Dfile.encoding=UTF-8 -classpath E:ideaProjectitcastoutproductiondata_structure BubbleTest
[1, 2, 3, 4, 5, 6]

Process finished with exit code 0
 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/603178.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号