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

冒泡排序

时间:2020-12-14 12:47:20      阅读:8      评论:0      收藏:0      [点我收藏+]

标签:void   class   产生   ati   static   第一个   demo1   arrays   for   

//冒泡排序

//1.比较数组中,两个相邻的元素,如果第一个比第二个大,则它们交换位置。

//2.每一次比较,都会产生一个最大或者最小的元素。

//3.下一轮可以少一次排序。

//4.知道循环结束

//实例:

public class Demo1 {
    public static void main(String[] args) {

        int[] ints = {1,2,3,4,5,6,7,8,9,};
        int[] sort = sort(ints);
        System.out.println(Arrays.toString(sort));
    }

    public  static  int[] sort(int[] array){
        int zhong = 0;
        for (int i=0;i<array.length-1; i++){
            for (int j=0;j<array.length-1-i;j++){
                if (array[j+1]>array[j]){
                    zhong = array[j+1];
                    array[j+1] = array[j];
                    array[j] = zhong;
                }
            }
        }
        return array;
    }

}

  

冒泡排序

标签:void   class   产生   ati   static   第一个   demo1   arrays   for   

原文地址:https://www.cnblogs.com/bilibilisusaobo/p/14099349.html

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