码迷,mamicode.com
首页 > 编程语言 > 详细

3、选择排序

时间:2018-04-18 15:21:18      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:https   选择排序   order   mes   clu   sel   images   none   sys   

  1 #include<iostream>
  2 
  3 using namespace std;
  4 
  5 void SelectSort(int *a,const int n);
  6 
  7 int main()
  8 {
  9 	int x[]={1,3,5,7,9,4,6,2,8,0};
 10 	SelectSort(x,10);
 11 
 12 	for(int i=0;i<10;i++)
 13 	{
 14 		cout<<x[i]<<"";
 15 	}
 16 	cout<<endl;
 17 	system("pause");
 18 	return 0;
 19 }
 20 
 21 void SelectSort(int *list,const int n)
 22 {
 23 	for(int i=0;i<n;i++)//n改为n-1也行,改为n-1后,i最大到8,下面j到9,最后一个数正好排到
 24 	{
 25 		int min=i;
 26 		for(int j=i+1;j<n;j++)
 27 		{
 28 			if(list[j]<list[min])
 29 				min=j;
 30 		}
 31 		swap(list[i],list[min]);
 32 	}
 33 }
 34 

VS2010运行结果:

技术分享图片

3、选择排序

标签:https   选择排序   order   mes   clu   sel   images   none   sys   

原文地址:https://www.cnblogs.com/luanxin/p/8874665.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!