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

《数据结构:邓俊辉版》——交换排序

时间:2019-11-04 09:34:34      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:sort   select   cts   nbsp   结构   bsp   sele   col   span   

void SelectSort(int nLen)
{
    for (int i = 0; i < nLen; i++)
    {
        int j = i;
        int nMax = i;
        while (j < nLen)
        {
            if (g_szArray[j] > g_szArray[nMax])
            {
                nMax = j;
            }
            j++;
        }

        int tmp = g_szArray[i];
        g_szArray[i] = g_szArray[nMax];
        g_szArray[nMax] = tmp;
    }
}

 

《数据结构:邓俊辉版》——交换排序

标签:sort   select   cts   nbsp   结构   bsp   sele   col   span   

原文地址:https://www.cnblogs.com/predator-wang/p/11790175.html

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