zoukankan      html  css  js  c++  java
  • 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

  • 相关阅读:
    64最长和谐子序列(594)
    63找到字符串中所有字母异位词(438)
    62有效的数独(36)
    10.10
    9.27作业
    9.27
    9.26
    9.25
    9.18学习内容
    9.17作业
  • 原文地址:https://www.cnblogs.com/luanxin/p/8874665.html
Copyright © 2011-2022 走看看