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

结构体sort()

时间:2018-05-05 16:48:54      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:div   排列   产生   头文件   cst   比较   als   stream   srand   

#include <iostream>
#include <cstdio>
#include <algorithm>//sort要包含的头文件 
#include <time.h>
using namespace std;

struct st
{
    int x,y;
};
st s[10];

bool cmp(st a,st b)//自定义的比较函数 
{
    if (a.x<b.x)//先按第一位数升序排列 
    {
        return true;
    }

    else if (a.x==b.x)
    {
        if (a.y<b.y)//再按第二位数升序排列 
        {
            return true;
        }
    }

    return false;
}

int main()
{
    srand(time(NULL));
    int i;
    for (i=0;i<10;i++)//生成随机数产生样例 
    {
        s[i].x=rand()%10;
        s[i].y=rand()%10;
    }

    for (i=0;i<10;i++)
    {
        printf("%d %d\n",s[i].x,s[i].y);
    }

    printf("\n");
    sort(s,s+10,cmp);// sort默认升序排列 

    for (i=0;i<10;i++)
    {
        printf("%d %d\n",s[i].x,s[i].y);
    }

    return 0;
}

 

结构体sort()

标签:div   排列   产生   头文件   cst   比较   als   stream   srand   

原文地址:https://www.cnblogs.com/hemeiwolong/p/8994986.html

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