【数据结构】——排序算法——3.1、选择排序
一、先上维基的图:
分类 | 排序算法 |
---|---|
数据结构 | 数组 |
最差时间复杂度 | О(n²) |
最优时间复杂度 | О(n²) |
平均时间复杂度 | О(n²) |
最差空间复杂度 | О(n)total,O(1)auxiliary |
二、描述:
选择算法算是最直观的一个了。每次在队列里抽取一个极大(或极小)值进行排列。每次都需要遍历未被抽取的元素队列。
三、Java程序:
static void selection_sort(int[] unsorted) { for (int i = 0;i < unsorted.Length-1; i++) { int min = unsorted[i],min_index = i; for (int j = i+1; j < unsorted.Length; j++) { if (unsorted[j] < min) { min = unsorted[j]; min_index = j; } } if (min_index != i) { int temp = unsorted[i]; unsorted[i] = unsorted[min_index]; unsorted[min_index] = temp; } } }原文链接:https://www.f2er.com/datastructure/382680.html