码迷,mamicode.com
首页 > 编程语言 > 详细

选择排序

时间:2020-04-18 11:37:00      阅读:49      评论:0      收藏:0      [点我收藏+]

标签:sed   sort   event   选择   选择排序   none   技术   click   eve   

技术图片
 1 void selectSort(int array[], int n) {
 2     int current;
 3     for (current = 0; current < n; ++current) {
 4         int i, min = array[current], minIndex = current; 
 5         for (i = current; i < n; ++i) {
 6             if (array[i] < min) {
 7                 min = array[i];
 8                 minIndex = i;
 9             }
10         }
11         swap(&array[current], &array[minIndex]);
12     }
13 }
选择排序

 

选择排序

标签:sed   sort   event   选择   选择排序   none   技术   click   eve   

原文地址:https://www.cnblogs.com/zymmyz/p/12724650.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!