选择排序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选择排序相关的知识,希望对你有一定的参考价值。
找到数组中的最小(最大)元素,将它和数组的第一个元素比较后交换,在剩下的元素中再找最小(最大)的元素,将它和第二个元素比较交换,以此类推。
这种排序在剩余的元素里不断选择最小(最大)者。
package sort20171101; import java.util.*; public class Selection { public static void main(String[] args) { // TODO Auto-generated method stub int []a = new int[20]; int n; Scanner in = new Scanner(System.in); n = in.nextInt(); for(int i = 0; i < n; i++) { a[i] = in.nextInt(); } //选择排序 for(int i = 0; i < n; i++) { int min = i; for(int j = i; j < n; j++) { if(a[j] < a[min]) { min = j; } } int temp; temp = a[i]; a[i] = a[min]; a[min] = temp; } for(int i = 0; i < n; i++) { System.out.println(a[i]); } } }
以上是关于选择排序的主要内容,如果未能解决你的问题,请参考以下文章
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段