选择排序
Posted keepcalmandneversaynever
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选择排序相关的知识,希望对你有一定的参考价值。
public class XuanZePaiXv { public static void main(String[] args) { int[] shu=new int[]{354,687,3468,54,723,1,86}; for (int i=0;i<shu.length-1;i++){ for (int j=i+1;j<shu.length;j++){ if (shu[i]>shu[j]){ int temp=shu[j]; shu[j]=shu[i]; shu[i]=temp; } } } for (int i=0; i <shu.length;i++){ System.out.println(shu[i]); } } }
通过j和i之后的数进行比较,较大的来替换第i个数的方式来排序
以上是关于选择排序的主要内容,如果未能解决你的问题,请参考以下文章
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段