码迷,mamicode.com
首页 > 编程语言 > 详细

数组冒泡排序

时间:2016-02-29 00:26:52      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:

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 】

 

数组冒泡排序

标签:

原文地址:http://www.cnblogs.com/panyiquan/p/5225996.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!