3选择排序

Posted 乱丶心

tags:

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

  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运行结果:

image

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

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

如何从另一个片段访问片段对象

sublime 3 使用Snippets创建代码片段

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

《算法》笔记 3 - 选择排序插入排序希尔排序

快速排序/快速选择算法