PAT_1028. List Sorting

本文介绍了一个简单的排序题目PAT_1028.ListSorting,通过使用C++实现对学生记录进行不同条件下的排序。文章展示了如何利用结构体和自定义比较函数完成任务,并讨论了输入方式对程序效率的影响。
摘要由CSDN通过智能技术生成
//
//  main.cpp
//  PAT_1028. List Sorting
//
//  Created by wjq on 17/4/14.
//  Copyright © 2017年 wjq. All rights reserved.
//

#include <iostream>
#include <algorithm>
#include <string.h>
using namespace std;
struct record
{
    int id;
    char name[15];
    int grade;
}stu[100005];
int cmpid(record a,record b)
{
    return a.id<b.id;
}
int cmpname(record a,record b)
{
    if(strcmp(a.name,b.name)==0)
        return a.id<b.id;
    return (strcmp(a.name,b.name)<0);
}
int cmpgrade(record a,record b)
{
    if(a.grade==b.grade)
        return a.id<b.id;
    return a.grade<b.grade;
}
int N,C;
int main(int argc, const char * argv[])
{
    scanf("%d%d",&N,&C);
    for(int i=0;i<N;i++)
        scanf("%d%s%d",&stu[i].id,stu[i].name,&stu[i].grade);
    switch (C)
    {
        case 1:
            sort(stu,stu+N,cmpid);
            break;
        case 2:
            sort(stu,stu+N,cmpname);
            break;
        case 3:
            sort(stu,stu+N,cmpgrade);
            break;
        default:
            break;
    }
    for(int i=0;i<N;i++)
        printf("%06d %s %d\n",stu[i].id,stu[i].name,stu[i].grade);
    return 0;
}

排序,简单题.

习惯了用cin,但cin效率没有scanf高,本题用cin最后一个case超时,因此要用scanf

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值