选择排序
Posted wangzaiplus
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选择排序相关的知识,希望对你有一定的参考价值。
一、代码
package algorithm;
public class SelectionSort {
public static void selectionSort(int[] arr) {
if (null == arr || arr.length <= 0) {
return;
}
for (int i = 0; i < arr.length - 1; i++) {
int minIndex = i;
for (int j = i + 1; j < arr.length; j++) {
if (arr[minIndex] > arr[j]) {
minIndex = j;
}
}
int temp = arr[i];
arr[i] = arr[minIndex];
arr[minIndex] = temp;
}
print(arr);
}
private static void print(int[] arr) {
for (int e : arr) {
System.out.print(e + " ");
}
}
public static void main(String[] args) {
int[] arr = {13, 7, 5, 8, 64, 2, 4, 62, 0, 1};
selectionSort(arr);
}
}
二、运行结果
以上是关于选择排序的主要内容,如果未能解决你的问题,请参考以下文章
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段