杭电hdu 1862 EXCEL排序 qsort

http://acm.hdu.edu.cn/showproblem.php?pid=1862

简单的qsort二级排序

#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>

using namespace std;

typedef struct _excel
{
    char no[7];
    char name[9];
    int score;
}excel;

excel ex[100001];

int cmpno(const void *a, const void *b)
{
    excel *fa = (excel*)a;
    excel *fb = (excel*)b;
    return strcmp(fa->no, fb->no) > 0 ? 1 : -1;
}

int cmpname(const void *a, const void *b)
{
    excel *fa = (excel *)a;
    excel *fb = (excel *)b;
    if(strcmp(fa->name, fb->name)!=0)return strcmp(fa->name, fb->name) > 0 ? 1 : -1;
    return strcmp(fa->no, fb->no) > 0 ? 1 : -1;
}

int cmpscore(const void *a, const void *b)
{
    excel *fa = (excel *)a;
    excel *fb = (excel *)b;
    if(fa->score != fb->score)return fa->score - fb->score > 0 ? 1 : -1;
    return strcmp(fa->no, fb->no) > 0 ? 1 : -1;
}

int main()
{
//    freopen("input.in", "r", stdin);
    int n, i, hw;
    int cas = 1;
    while(scanf("%d%d", &n, &hw)&&n){
        for(i = 0; i < n; i ++){
            scanf("%s%s%d", ex[i].no, ex[i].name, &ex[i].score);
        }
        if(hw == 1){
            qsort(ex, n, sizeof(ex[0]), cmpno);
        }
        else if(hw == 2){
            qsort(ex, n, sizeof(ex[0]), cmpname);
        }
        else if(hw == 3){
            qsort(ex, n, sizeof(ex[0]), cmpscore);
        }

        printf("Case %d:\n", cas ++);
        for(i = 0; i < n; i ++){
            printf("%s %s %d\n", ex[i].no, ex[i].name, ex[i].score);
        }
    }
    return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值