选择性排序
Posted buwei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选择性排序相关的知识,希望对你有一定的参考价值。
名词解释:——来自百度百科
选择排序(Selection sort)是一种简单直观的排序算法。它的工作原理是每一次从待排序的数据元素中选出最小(或最大)的一个元素,存放在序列的起始位置,然后,再从剩余未排序元素中继续寻找最小(大)元素,然后放到已排序序列的末尾。以此类推,直到全部待排序的数据元素排完。 选择排序是不稳定的排序方法。
1 public class SelectionSort { 2 3 public static void main(String[] args) { 4 int[] arr = {100, 30, 70, 20, 80, 60, 40, 50, 90, 10}; 5 int minIndex = 0; 6 int temp = 0; 7 for (int i = 0; i < arr.length; i++) { 8 // 无序区数组的最小索引 9 minIndex = i; 10 for (int j = i + 1; j < arr.length; j++) { 11 // 无序区数组中找到最小元素,并保存其索引 12 if (arr[j] < arr[minIndex]) { 13 minIndex = j; 14 } 15 } 16 // 将无序区中找出的最小元素放到本次循环的前端 17 temp = arr[i]; 18 arr[i] = arr[minIndex]; 19 arr[minIndex] = temp; 20 } 21 System.out.println(Arrays.toString(arr)); 22 } 23 }
以上是关于选择性排序的主要内容,如果未能解决你的问题,请参考以下文章
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段