EaBIM一直以来积极响应国家“十二五”推进建筑业信息化的号召,对建筑领域的信息技术开展深入技术交流和探讨!致力于打造“BIM-建筑师-生态技术”三位一体综合资源交流共享平台,希望为BIM与可持续设计理念及技术的普及做出微小的贡献!!!

萧闫子 发表于 2014-1-10 14:23:58

[算法] 选择排序

#include <iostream>
using namespace std;

void selectionSort(int arr[, int n)
{
    int smallIndex;
    int pass, j;
    int temp;

    for (pass = 0; pass < n-1; pass++)
    {
      smallIndex = pass;
      for (j = pass+1; j < n; j++)
            if (arr[j < arr[smallIndex)
                smallIndex = j;
      if (smallIndex != pass)
      {
            temp = arr[pass;
            arr[pass = arr[smallIndex;
            arr[smallIndex = temp;
      }
    }
}

int main()
{
    int arr[15 = {10, 21, 2, 1, 3, 45, 2, 932, 32, 27, 86, 65, 576, 434, 76753};

    int i;
   
    cout << "Original array" << endl;
    for (i = 0; i < 15; i++)
      cout << arr[i << " ";
    cout << endl << endl;

   
    selectionSort(arr, 15);

    cout << "Sorted array" << endl;
    for (i = 0; i < 15; i++)
      cout << arr[i << " ";
    cout << endl;

    return 0;
}
页: [1]
查看完整版本: [算法] 选择排序