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

EaBIM

 找回密码
 注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

搜索
查看: 397|回复: 0
打印 上一主题 下一主题

[算法] 选择排序

[复制链接]

1514

主题

7465

帖子

1万

积分

admin

Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10

积分
12404

社区QQ达人

跳转到指定楼层
楼主
发表于 2014-1-10 14:23:58 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
  1. #include <iostream>
  2. using namespace std;

  3. void selectionSort(int arr[, int n)
  4. {
  5.     int smallIndex;
  6.     int pass, j;
  7.     int temp;

  8.     for (pass = 0; pass < n-1; pass++)
  9.     {
  10.         smallIndex = pass;
  11.         for (j = pass+1; j < n; j++)
  12.             if (arr[j < arr[smallIndex)
  13.                 smallIndex = j;
  14.         if (smallIndex != pass)
  15.         {
  16.             temp = arr[pass;
  17.             arr[pass = arr[smallIndex;
  18.             arr[smallIndex = temp;
  19.         }
  20.     }
  21. }

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

  25.     int i;
  26.    
  27.     cout << "Original array" << endl;
  28.     for (i = 0; i < 15; i++)
  29.         cout << arr[i << " ";
  30.     cout << endl << endl;

  31.    
  32.     selectionSort(arr, 15);

  33.     cout << "Sorted array" << endl;
  34.     for (i = 0; i < 15; i++)
  35.         cout << arr[i << " ";
  36.     cout << endl;

  37.     return 0;
  38. }
复制代码
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
收藏收藏 转播转播 分享分享 分享淘帖 支持支持 反对反对
工作时间:工作日的9:00-12:00/13:30-18:00,节假日不在线,请勿留言
*滑块验证:
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|EaBIM网 ( 苏ICP备2020058923号-1  苏公网安备32011502011255号

GMT+8, 2024-11-16 12:57

Powered by Discuz! X3.2 Licensed

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表