码迷,mamicode.com
首页 > 编程语言 > 详细

【STL学习】sort函数之自定义结构体数组

时间:2017-08-09 23:37:35      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:span   size   ios   数组   std   ons   div   定义   学习   

最近经常用到结构体数组排序,所以把用sort对结构体数组排序整理一下。

    #include<iostream>
    #include<algorithm>//需要加该头文件
    using namespace std;
    struct define{
        int a;
        int b;
    }d[10];
    bool compare(const define &x,const define &y);
    int main()
    {
        for(int i=0;i<10;i++){
            cin>>d[i].a>>d[i].b;
        }
        cout<<"排序规则为,先比较a如果a相等则比较b:"<<endl;
        sort(d,d+10,compare);
        for(int i=0;i<10;i++){
            cout<<d[i].a<< <<d[i].b<<endl;
        }
        return 0;
    }
    bool compare(const define &x,const define &y){
        if(x.a!=y.a){
            return x.a<y.a;//升序
        }else if(x.a==y.a){
            return x.b<y.b;
        }
    }

输入:

2 5
12 4
23 9
8 45
4 10
4 7
2 30
9 23
89 3
19 19

输出

排序规则为,先比较a如果a相等则比较b:
2 5
2 30
4 7
4 10
8 45
9 23
12 4
19 19
23 9
89 3

【STL学习】sort函数之自定义结构体数组

标签:span   size   ios   数组   std   ons   div   定义   学习   

原文地址:http://www.cnblogs.com/LuRenJiang/p/7327935.html

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