选择排序

Posted SmallDolphin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选择排序相关的知识,希望对你有一定的参考价值。

这个就更简单了...不多说了,自己理解吧。

 1 #include<cstdio>
 2 #include<algorithm>
 3 using namespace std;
 4 #define SIZE 5
 5 int main(){
 6     int a[SIZE] = {4,5,1,3,2};
 7     int i,j;
 8     for(i = 0;i < SIZE; ++i)
 9         for(j = i +1;j <SIZE; ++j)
10         if(a[i] > a[j]){
11             swap(a[i],a[j]);
12         }
13         for(i = 0;i < SIZE; ++i)
14         printf("%d", a[i]);
15         return 0;
16 }

 

以上是关于选择排序的主要内容,如果未能解决你的问题,请参考以下文章

初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段

VSCode自定义代码片段——CSS选择器

VSCode自定义代码片段6——CSS选择器

在第6731次释放指针后双重免费或损坏

微信小程序代码片段

pycharm添加Odoo代码片段