我是靠谱客的博主 爱听歌凉面,最近开发中收集的这篇文章主要介绍C++中sort函数对于结构体的的应用(1)——针对结构体数组排序,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

方法一:结构体内重载

#include <iostream>
#include<stdio.h>
#include <string.h>
#include <algorithm>
#include <vector>
#include <queue>
using namespace std;
const int maxn = 1000;
struct people{
    char name[20];
    int age;
    int weight;
    people(){}///默认构造函数一定要加!!!
    people(char nam[], int ag, int we){
        strcpy(name, nam);
        age = ag;
        weight = we;
    }
    bool operator<(const people&t){
        return age < t.age;///小于号是升序输出
    }
};

people p[maxn];

int main(){
    int N;
    char nam[20];
    int ag;
    int we;
    scanf("%d", &N);
    for(int i = 0; i < N; ++i)
        scanf("%s%d%d", &p[i].name, &p[i].age, &p[i].weight);
    sort(p, p+N);
    printf("输出数据:n");
    for(int i = 0; i < N; ++i)
        printf("%s %d %dn", p[i].name, p[i].age, p[i].weight);
    return 0;
}

最后

以上就是爱听歌凉面为你收集整理的C++中sort函数对于结构体的的应用(1)——针对结构体数组排序的全部内容,希望文章能够帮你解决C++中sort函数对于结构体的的应用(1)——针对结构体数组排序所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部