P20.CPP
上传用户:chaiyuqiu
上传日期:2022-08-03
资源大小:27k
文件大小:0k
源码类别:

数据结构

开发平台:

C/C++

  1. void selectSort ( int a[], const int n) {
  2.     for (int i=0; i<n-1; i++ ) {
  3. int k = i;
  4. for (int j=i+1; j<n; j++)
  5.     if ( a[j] < a[k] )  k=j;
  6. int temp = a[i]; a[i] = a[k]; a[k] = temp;
  7.     }
  8. }
  9. #include <iostream.h>
  10. void main() {
  11.     static  int a[10] = {98,87,76,67,45,32,54,110,67,90 };
  12.     int n = 8;
  13.     selectSort( a, n );
  14.     for (int i=0; i<n; i++) cout << a[i] << "  ";
  15.     cout << endl;
  16. }