标题:排序
只看楼主
源哥。。。
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2017-11-13
结帖率:0
已结贴  问题点数:20 回复次数:1 
排序
for (i = 2; i <= num*(num - 1); i++)
    {
        if (distance[i - 1].distance < distance[i].distance)
        {
            int temp=0;
            distance[temp] = distance[i];
            for (j = i - 1; distance[temp].distance < distance[j].distance; j--)
            {
                distance[j] = distance[j + 1];
                distance[j + 1] = distance[temp];
                distance[temp] = distance[j];
            }
               
        }
    }

怎么让他从大到小排序
搜索更多相关主题的帖子: 排序 for num temp 从大到小 
2018-12-24 20:43
哈哈笑吧
Rank: 2
等 级:论坛游民
威 望:1
帖 子:12
专家分:99
注 册:2017-11-24
得分:20 
百度冒泡排序,选择排序,还有就是把代码发全了
2018-12-27 14:43



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-492254-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.038451 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved