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的主要内容,如果未能解决你的问题,请参考以下文章

代码片段 - Golang 实现集合操作

c ++ std :: sort intel编译器错误:访问冲突

java8 .stream().sorted().filter().map().collect()用法

微信小程序代码片段

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js