选择排序(SelectionSort )
2021-04-13 09:28
标签:最大 选择 之一 pre rgs turn 占用 关键字 ons ?表现最稳定的排序算法之一,因为无论什么数据进去都是O(n2)的时间复杂度,所以用到它的时候,数据规模越小越好。唯一的好处可能就是不占用额外的内存空间了。 T(n) = O(n2) 选择排序(SelectionSort ) 标签:最大 选择 之一 pre rgs turn 占用 关键字 ons 原文地址:https://www.cnblogs.com/jiezao/p/13341267.html1.1概述
1.2描述
1.3代码
package SelectionSort;
public class SelectionSort {
public static void main(String[] args) {
int[] arr = new int[]{1,2,5,7,9,4,6,3,2,8};
SelectionSort.selectionSort(arr);
for(int x : arr){
System.out.println(x);
}
}
public static void selectionSort(int[] ins){
int n = ins.length;//经过n-1次提取最小最大值
for(int i=0; i
1.4分析