选择排序
Posted zymmyz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选择排序相关的知识,希望对你有一定的参考价值。
1 void selectSort(int array[], int n) { 2 int current; 3 for (current = 0; current < n; ++current) { 4 int i, min = array[current], minIndex = current; 5 for (i = current; i < n; ++i) { 6 if (array[i] < min) { 7 min = array[i]; 8 minIndex = i; 9 } 10 } 11 swap(&array[current], &array[minIndex]); 12 } 13 }
以上是关于选择排序的主要内容,如果未能解决你的问题,请参考以下文章
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段