选择排序

2021-01-21 11:14

阅读:896

标签:public   冒泡排序   次数   length   衡量   static   col   code   元素   

选择排序是冒泡排序的一种改进,相比于之前的衡量尺,选择排序获取的不是符合衡量尺的元素的值 而是元素,相比于冒泡排序,冒出一个数只需要交换一次数值

 public static void comnpare1(int[] arr) {
        for (int i = 0; i ) {
            int minindex = i;
            for (int j = i; j ) {
                if (arr[minindex] > arr[j]) {
                    minindex = j;
                }
            }
            if (minindex != i) {
                int a = arr[minindex];
                arr[minindex] = arr[i];
                arr[i] = a;
            }
        }
        for (int i = 0; i ) {
            System.out.println(arr[i]);
        }
    }

 

选择排序

标签:public   冒泡排序   次数   length   衡量   static   col   code   元素   

原文地址:https://www.cnblogs.com/Vinlen/p/12896071.html


评论


亲,登录后才可以留言!