题解 | #查找学生信息# -map解法

查找学生信息

https://www.nowcoder.com/practice/fe8bff0750c8448081759f3ee0d86bb4

#include <bits/stdc++.h>
using namespace std;

struct node {
    string id;
    string name;
    string sex;
    int age;
};

int main() {
    int n;
    cin >> n;
    map<string, node> m;
    while (n--) {
        node temp;
        cin >> temp.id >> temp.name >> temp.sex >> temp.age;
        m[temp.id] = temp;
    }

    int k;
    cin >> k;
    while (k--) {
        string id;
        cin >> id;
        auto it = m.find(id);
        if (it != m.end()) {
            cout << m[id].id << " " << m[id].name << " " <<
                 m[id].sex << " " << m[id].age << endl;
        } else {
            cout << "No Answer!" << endl;
        }
    }
}


全部评论

相关推荐

死在JAVA的王小美:哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈,我也是,让我免了一轮,但是硬气拒绝了
点赞 评论 收藏
分享
Java抽象带篮子:难蚌,点进图片上面就是我的大头😆
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务