查找学生信息

查找学生信息

http://www.nowcoder.com/questionTerminal/fe8bff0750c8448081759f3ee0d86bb4

1、定义学生类:学号,姓名,性别,年龄
2、重写输入输出函数(io)
3、根据建立学号和学生的对应关系
4、根据学号找学生,可以使用find和count,不要使用中括号查找

#include <iostream>
#include <map>
using namespace std;

class student
{
    public:
    string id;
    string name;
    string gender;
    int age;
    friend istream& operator>>(istream& in,student& s)
    {
        in >> s.id >> s.name >> s.gender >> s.age;
        return in;
    }
    friend ostream& operator<<(ostream& out,student s)
    {
        out << s.id << ' ' << s.name << ' ' << s.gender << ' ' << s.age;
        return out;
    }
};
int main()
{
    int n;
    int M;
    student s;
    string id;
    while(cin >> n)
    {
        map<string,student> m;
        for(int i = 0;i<n;i++)
        {
            cin >> s;
            m.insert(make_pair(s.id, s));
        }
        cin >> M;
        for(int i = 0;i<M;i++)
        {
            cin >> id;
            if(m.count(id)) cout << m[id] << endl;
            else cout << "No Answer!" << endl;
        }
    }
}
全部评论

相关推荐

头像
11-27 14:28
长沙理工大学
刷算法真的是提升代码能力最快的方法吗?&nbsp;刷算法真的是提升代码能力最快的方法吗?
牛牛不会牛泪:看你想提升什么,代码能力太宽泛了,是想提升算法能力还是工程能力? 工程能力做项目找实习,算法也分数据结构算法题和深度学习之类算法
点赞 评论 收藏
分享
像好涩一样好学:这公司我也拿过 基本明确周六加班 工资还凑活 另外下次镜头往上点儿
点赞 评论 收藏
分享
10-30 22:18
已编辑
毛坦厂中学 C++
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务