美文网首页
冒泡排序

冒泡排序

作者: 小北觅 | 来源:发表于2018-11-11 16:02 被阅读9次
    package sort;
    
    public class BubbleSort {
    
        public static void main(String[] args) {
            int[] array = { 72, 6, 57, 88, 60, 42, 83, 73, 48, 85 };
            BubbleSort(array);
            for (int i : array) {
                System.out.println(i);
            }
        }
    
        private static void BubbleSort(int[] array) {
            int len = array.length;
            for (int i = 0; i < len - 1; i++) {
                for (int j = len - 1; j > i; j--) {
                    if (array[j] < array[j - 1]) {
                        int temp = array[j];
                        array[j] = array[j - 1];
                        array[j - 1] = temp;
                    }
                }
            }
        }
    }
    

    相关文章

      网友评论

          本文标题:冒泡排序

          本文链接:https://www.haomeiwen.com/subject/iknxfqtx.html