我是靠谱客的博主 妩媚黄豆,最近开发中收集的这篇文章主要介绍结构体排序(多个关联数组的排序),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

C语言的结构体排序实现方法:

#include <iostream>
#include <algorithm>

using namespace std;

struct data
{
    int a;
    int b;
    void Init()
    {
        cin >> a >> b;
    }
};

bool cmp(struct data d1, struct data d2)
{
    return d1.a < d2.a;
}

int main()
{
    int N;
    cin >> N;
    struct data d[100];
    for(int i = 0; i < N; i++)
    {
        d[i].Init();
    }
    sort(d, d + N, cmp);
    cout << endl;
    for(int i = 0; i < N; i++)
    {
        cout << d[i].a << ' ' << d[i].b << endl;
    }
}

C++语言的类排序实现方法:

#include <iostream>
#include <algorithm>

using namespace std;

class data
{
private:
    int a;
    int b;
public:
    data(){a = 0; b = 0;}
    void Init()
    {
        cin >> a >> b;
    }
    void Pop()
    {
        cout << a << ' ' << b << endl;
    }
    bool operator<(const data& d2)
    {
        return a < d2.a;
    }
    bool operator>(const data& d2)
    {
        return a > d2.a;
    }
};

int main()
{
    int N;
    cin >> N;
    class data d[100];
    for(int i = 0; i < N; i++)
    {
        d[i].Init();
    }
    sort(d, d + N, greater<>());
    cout << endl;
    for(int i = 0; i < N; i++)
    {
        d[i].Pop();
    }
}

最后

以上就是妩媚黄豆为你收集整理的结构体排序(多个关联数组的排序)的全部内容,希望文章能够帮你解决结构体排序(多个关联数组的排序)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部