标签:
调用sort函数需要加头文件<algorithm>
bool comp(int a,int b){
return a<b;
}
即默认排序为从小到大,如果想从大到小,只需要作如下修改
bool comp(int a,int b){
return a<b;
}
调用sort函数时,显性调用comp函数,sort(begin,end,comp)
有两种方法,举例说明
struct temp{
int w;
int p;
temp(){
w=0;
p=0;
}
bool operator <(const temp &t)const{
return w<t.w //按w的大小从小到大排列
}
}
标签:
原文地址:http://www.cnblogs.com/celineccoding/p/4280554.html