题解 | #小白鼠排队#

小白鼠排队

https://www.nowcoder.com/practice/27fbaa6c7b2e419bbf4de8ba60cf372b

//sort函数即可,需要用到函数指针
#include "stdio.h"
#include "algorithm"
using namespace std;
struct mouse{
    int weight;
    char color[11];
};
bool compare(mouse lhs,mouse rhs){
    if(lhs.weight > rhs.weight)
    return true;
    else
    return false;
}
int main(){
    int N;
    while(scanf("%d",&N)!=EOF){
        mouse m[10000];
        for (int i=0; i<N; ++i) {
            scanf("%d",&m[i].weight);
            scanf("%s",m[i].color);
        }
        sort(m,m+N,compare);
        for(int i=0; i<N;++i){
            printf("%s\n",m[i].color);
        }
    }
}

全部评论

相关推荐

过往烟沉:我说什么来着,java就业面就是广!
点赞 评论 收藏
分享
11-27 12:43
已编辑
门头沟学院 C++
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务