数组冒泡排序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组冒泡排序相关的知识,希望对你有一定的参考价值。

import org.omg.Messaging.SyncScopeHelper;

public class 冒泡排序 {

    public static void main(String[] args) { 
        
        int []array=new int[]{63,4,24,1,3,13};
        System.out.println("冒泡排序法的过程是:");
        for(int i=1;i<array.length;i++)
        {
            for(int j=0;j<array.length-i;j++)
            {
                if(array[j]>array[j+1])
                {
                    int temp=array[j];
                    array[j]=array[j+1];
                    array[j+1]=temp;
                }
                System.out.print(array[j]+" ");
            }
            System.out.print("【");
            for(int j=array.length-i;j<array.length;j++)
            {
                System.out.print(array[j]+" ");
            }
            System.out.println("】");
        }
    }
}
答案
冒泡排序法的过程是:
4 24 1 3 13 【634 1 3 13 【24 631 3 4 【13 24 631 3 【4 13 24 631 【3 4 13 24 63 】

 

以上是关于数组冒泡排序的主要内容,如果未能解决你的问题,请参考以下文章

数组排序代码,冒泡排序&快速排序&选择排序

[GO]冒泡排序的原理和代码实现

冒泡排序

数组中冒泡排序直接选择排序反序排序原理与区别

《C#零基础入门之百识百例》(二十二)数组排序 -- 冒泡排序

冒泡排序和鸡尾酒排序的代码分析