成绩排序(巧妙利用vector)

题目链接:https://www.nowcoder.com/practice/8e400fd9905747e4acc2aeed7240978b?tpId=37&tags=&title=&diffculty=0&judgeStatus=0&rp=1&ru=/ta/huawei&qru=/ta/huawei/question-ranking

#include <iostream>
#include <vector>
#include <string>
using namespace std;

int main()
{
    int n;
    int way;
    string name;
    int grade;
    while(cin >> n >> way)
    {
        vector<string> b[101];  //0-100分的桶共101个
        for(int i = 0; i < n; i++)
        {
            cin >> name >> grade;
            b[grade].push_back(name);
        }
        if(way == 0)
        {
          for(int i = 100 ; i >= 0; i--)
          {
             for(int j = 0; j < b[i].size(); j++)
                 cout << b[i][j] << " " << i << endl;
          }
        }
        else
        {
          for(int i = 0 ; i < 101; i++)
          {
             for(int j = 0; j < b[i].size(); j++)
                 cout << b[i][j] << " " << i << endl;
          }
        }
    }
}
全部评论

相关推荐

菜菜咪:1. 可以使用简历网站的模版,美观度会更好一点 2. 邮箱可以重新申请一个,或者用qq邮箱的别名,部分hr可能会不喜欢数字邮箱 3. 项目经历最好分点描述,类似的项目很多,可以参考一下别人怎么写的 4. 自我评价可加可不加,技术岗更看重技术。最后,加油,优秀士兵
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务