冒泡排序及优化

import org.junit.Test;

import java.util.Arrays;

/**
 * Created by wc on 2018/4/27.
 */

public class 冒泡排序 {

    @Test
    public void test(){
        int[] array= {3,1,5,8,2,9,4,7};
        sort(array);
        System.out.print(Arrays.toString(array));
    }

    /**
     * 交换数据,两两交换
     * 3~5个数的排序采用冒泡排序,效率最好
     * @param array
     */
    public static void sort(int[] array){

        for(int i=array.length-1;i>0;i--){
            boolean flag=true;
            for(int j=0;j array[j + 1]) {
                    int temp = array[j];
                    array[j] = array[j + 1];
                    array[j + 1] = temp;
                    flag = false;
                }
            }
            //如果没进去,就直接退出
            if(flag){
                break;
            }
        }
    }
}

你可能感兴趣的:(冒泡排序及优化)