码迷,mamicode.com
首页 > 其他好文 > 详细

sort的cmp

时间:2020-01-15 00:08:15      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:turn   color   div   int   sort   bool   code   style   pre   

bool cmp(int a, int b){
    return a>b;        //由大到小 降序 
} 



bool cmp(int a, int b){
    return a<b;        //由小到大  升序 
}

sort(s,s+n,cmp);

sort的cmp

标签:turn   color   div   int   sort   bool   code   style   pre   

原文地址:https://www.cnblogs.com/shiliuxinya/p/12194566.html

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