题解 | #最小年龄的3个职工#

最小年龄的3个职工

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

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<iostream>
#include<algorithm>
using namespace std;

typedef struct Worker {
    int no;
    char name[15];
    int age;
} Worker;

bool cmp(const Worker& a, const Worker& b) {
    if (a.age < b.age) return true;
    else if (a.age == b.age) {
        if (a.no < b.no) return true;
        else if (a.no == b.no) {
            if (a.name == b.name) return true;
        }
    }
    return false;
}

int main() {
    int n;
    while (scanf("%d", &n) != EOF) {
        Worker w[35];
        for (int i = 0; i < n; i++) scanf("%d%s%d", &w[i].no, w[i].name, &w[i].age);
        sort(w, w + n, cmp);
        n = n > 3 ? 3 : n;
        for (int i = 0; i < n; i++) printf("%d %s %d\n", w[i].no, w[i].name, w[i].age);

    }
    return 0;
}

全部评论

相关推荐

09-01 11:31
门头沟学院 Java
buul:七牛云的吧,感觉想法是好的,但是大家没那么多时间弄他这个啊。。。不知道的还以为他是顶尖大厂呢还搞比赛抢hc,只能说应试者的痛苦考察方是无法理解的,他们只会想一出是一出
点赞 评论 收藏
分享
08-19 17:40
Java
吴offer选手:666 打老板了吗
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务