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

#include<algorithm>

时间:2014-05-10 05:29:43      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:c   int   a   os   size   it   

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

#include<algorithm>

标签:c   int   a   os   size   it   

原文地址:http://www.cnblogs.com/MobileRobot/p/3719521.html

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