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

冒泡排序

时间:2016-05-05 14:22:40      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

package studyjava;

public class maopao {
    public static void main(String[] args)
    {
        int[] a={3,6,2,8,54,1,34};
        sort(a);
        for(int i=0;i<a.length;i++)
        {
            System.out.println(a[i]);
        }
    }
    static void sort(int[] a)
    {
        int length=a.length;
        int temp;
        int i,j;
        for(j=length-1;j<length;j--)
        {
            for(i=0;i<j;i++)
            {
                if(a[i]>a[i+1])
                {
                    temp=a[i+1];
                    a[i+1]=a[i];
                    a[i]=temp;
                }
            }
        }
    }
}

 

冒泡排序

标签:

原文地址:http://www.cnblogs.com/penghong2014/p/5461518.html

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