7-9 宿舍谁最高? (20 分)
学校选拔篮球队员,每间宿舍最多有4个人。现给出宿舍列表,请找出每个宿舍最高的同学。定义一个学生类Student,有身高height,体重weight等。
输入格式:
首先输入一个整型数n (1<=n<=1000000),表示n位同学。
紧跟着n行输入,每一行格式为:宿舍号,name,height,weight。
宿舍号的区间为[0,999999], name 由字母组成,长度小于16,height,weight为正整数。
输出格式:
按宿舍号从小到大排序,输出每间宿舍身高最高的同学信息。题目保证每间宿舍只有一位身高最高的同学。
输入样例:
7
000000 Tom 175 120
000001 Jack 180 130
000001 Hale 160 140
000000 Marry 160 120
000000 Jerry 165 110
000003 ETAF 183 145
000001 Mickey 170 115
输出样例:
000000 Tom 175 120
000001 Jack 180 130
000003 ETAF 183 145
//错误代码 key用string类
#include<iostream>
#include<string>
#include<map>
using namespace std;
class Student{
private:
string no;
string name;
int height;
int weight;
public:
Student(string strNo="",string strName="",int b=0,int c=0){
no=strNo;
name=strName;
height=b;
weight=c;
};
string GetNo(){
return no;
}
int GetHeight(){
return height;
}
void printMembers(){
cout<<no<<