1. int cmp(const void *x,const void *y)
{return *(int*)y-*(int*)x;}//非增序
qsort(a,n,sizeof(a[0]),cmp);//参数分别为(首位置,个数,大小,比较函数)(后续更新)
2.int num=unique(a,a+n)-a;//(pos0,pos1)num为不重复的数的个数
3.sort(a,a+n,cmp);
struct Node{int
x,y,num;}a[maxn];
bool cmp(Node a,Node b)
{
if(a.x!=b.x)return
a.x>b.x;
if(a.y!=b.y)return
a.y>b.y;
return 0;
}
#include<algorithm>,布布扣,bubuko.com
原文地址:http://www.cnblogs.com/MobileRobot/p/3719521.html