1023.EXCEL排序

来源:互联网 发布:大数据maven 教程 编辑:程序博客网 时间:2024/06/05 23:41
题目描述:
Excel可以对一组纪录按任意指定列排序。现请你编写程序实现类似功能。
对每个测试用例,首先输出1行“Case i:”,其中 i 是测试用例的编号(从1开始)。随后在 N 行中输出按要求排序后的结果,即:当 C=1 时,按学号递增排序;当 C=2时,按姓名的非递减字典序排序;当 C=3
时,按成绩的非递减排序。当若干学生具有相同姓名或者相同成绩时,则按他们的学号递增排序。
输入:
测试输入包含若干测试用例。每个测试用例的第1行包含两个整数 N (N<=100000) 和 C,其中 N 是纪录的条数,C 是指定排序的列号。以下有N行,每行包含一条学生纪录。每条学生纪录由学号(6位数字,同组测试中没有重复的学号)、姓名(不超过8位且不包含空格的字符串)、成绩(闭区间[0, 100]内的整数)组成,每个项目间用1个空格隔开。当读到 N=0 时,全部输入结束,相应的结果不要输出。
输出:
对每个测试用例,首先输出1行“Case i:”,其中 i 是测试用例的编号(从1开始)。随后在 N 行中输出按要求排序后的结果,即:当 C=1 时,按学号递增排序;当 C=2时,按姓名的非递减字典序排序;当 C=3
时,按成绩的非递减排序。当若干学生具有相同姓名或者相同成绩时,则按他们的学号递增排序。
样例输入:
3 1
000007 James 85
000010 Amy 90
000001 Zoe 60
4 2
000007 James 85
000010 Amy 90
000001 Zoe 60
000002 James 98
4 3
000007 James 85
000010 Amy 90
000001 Zoe 60
000002 James 90
0 0
样例输出:
Case 1:
000001 Zoe 60
000007 James 85
000010 Amy 90
Case 2:
000010 Amy 90
000002 James 98
000007 James 85
000001 Zoe 60
Case 3:
000001 Zoe 60
000007 James 85
000002 James 90

000010 Amy 90

#include <iostream>#include <string>#include <algorithm>#include <vector>using namespace std;class Student{public:    string m_number;    string m_name;    int m_score;    Student(const string &number = "",const string &name = "",int score = -1)    :m_number(number),m_name(name),m_score(score){}public:    void print() const    {        cout << m_number << " " << m_name << " " << m_score << endl;    }};class NumberSort{public:    bool operator()(const Student &lhs, const Student &rhs) const    {        return lhs.m_number < rhs.m_number;    }};class NameSort{public:    bool operator()(const Student &lhs, const Student &rhs) const    {        if(lhs.m_name != rhs.m_name)            return lhs.m_name < rhs.m_name;        else            return lhs.m_number < rhs.m_number;    }};class ScoreSort{public:    bool operator()(const Student &lhs, const Student &rhs) const    {        if(lhs.m_score != rhs.m_score)            return lhs.m_score < rhs.m_score;        else            return lhs.m_number < rhs.m_number;    }};void print(const Student &stu){    cout << stu.m_name << " " << stu.m_number << " " << stu.m_score << endl;}int main(){    typedef vector<Student> StuVec;    StuVec stu;    int count = 0;    int N,C;    while(cin >> N >> C)    {        if(N == 0 && C == 0)            break;        for(int i = 0; i != N; ++i)        {            string number;            string name;            int score;            cin >> number >> name >> score;            stu.push_back(Student(number,name,score));        }        switch(C)        {        case 1:            sort(stu.begin(),stu.end(),NumberSort());            break;        case 2:            sort(stu.begin(),stu.end(),NameSort());            break;        case 3:            sort(stu.begin(),stu.end(),ScoreSort());            break;        }        cout << "Case " << ++count << ":" << endl;        for_each(stu.begin(),stu.end(),mem_fun_ref(&Student::print));        stu.clear();    }    return 0;}

0 0