冒泡排序

2021-04-24 13:27

阅读:310

标签:i++   array   void   color   冒泡   system   位置   作用   数字   

用两个for来实现

两个for的作用 :单拎出来一个,与未排序的数字比较去掉,如果后面的值小于本身,则互换

  例如:1 3 2

拎出来 2 与前面的数字比较,碰到 3 了

  3赋值给临时变量temp;

  2放到3的位置上去,temp放到原来2的位置上去

 

import java.util.Arrays;

public class maobao_sort {
    public static void main(String[] args) {
        int[] a = {1,4,6,99,45,34};
        int[] sort = sort(a);
        System.out.println(Arrays.toString(sort));
    }

    public static int[] sort(int[] array){
        int temp = 0;
        for(int i=0; i//ifor(int j=0; j//j
                if(array[j + 1] //只需比较前面没有排序的
                    temp = array[j];
                    array[j] = array[j+1];
                    array[j+1] = temp;
                }
            }
        }
        return array;
    }
}

 

冒泡排序

标签:i++   array   void   color   冒泡   system   位置   作用   数字   

原文地址:https://www.cnblogs.com/qiuyehaha/p/13263592.html


评论


亲,登录后才可以留言!