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

c语言 选择排序

时间:2014-08-18 23:19:53      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:for   ar   size   sp   c   c语言   print   class   

选择排序

    //    int array[] = {3, 2, 6, 9, 8, 5, 7, 1, 4};

    //    int count = sizeof(array) / sizeof(array[0]);

    //

    //    for (int i = 0; i < count - 1; i++) {

    //        int minIndex = i;

    //        for (int j = minIndex + 1; j < count; j++) {

    //            if (array[minIndex] > array[j]) {

    //                minIndex = j;

    //            }

    //        }

    //        int temp = 0;

    //        temp = array[minIndex];

    //        array[minIndex] = array[i];

    //        array[i] = temp;

    //    }

    //    for (int i = 0; i < count; i++) {

    //        printf("[%2d] : %d\n", i, array[i]);

    //    }

c语言 选择排序,布布扣,bubuko.com

c语言 选择排序

标签:for   ar   size   sp   c   c语言   print   class   

原文地址:http://www.cnblogs.com/yuanview/p/3920625.html

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