sort
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sort相关的知识,希望对你有一定的参考价值。
sort int
bool cmp(int a,int b) { return a>b; } int main() { int a[100]; sort(a,a+100,cmp); }
sort struct
struct T { int x,y; }nod[100]; bool cmp(T a,T b)//先按x从小到大排,相同,再按y从小到大 { return a.x<b.x||(a.x==b.x&&a.y<b.y); } sort(nod,nod+n,cmp);//n是长度
以上是关于sort的主要内容,如果未能解决你的问题,请参考以下文章
c ++ std :: sort intel编译器错误:访问冲突