Given a list of N student records with name, ID and grade. You are supposed to sort the records with respect to the grade in non-increasing order, and
转载 2020-04-28 22:04:00
65阅读
2评论
题目题意:给学生成绩排序,输出区间[a,b]的学生信息#include<iostream>#in ss a,struct...
原创 2023-06-27 10:16:29
63阅读
Given a list of N student records with name, ID and grade. You are supposed to sort the records with respect to the grade in non-increasing order, and
转载 2018-01-16 16:47:00
39阅读
#include<iostream>#include<stdio.h>#include<stdlib.h>#include<math.h>#include<string.h>#include<algorithm> #include<map>#include<vector>#inclu...
原创 2022-07-14 10:25:27
42阅读
大水题。。。完全没有$25$分题的样子。。。 struct Node { string name; string id; int grade; bool operator<(const Node &W) const { return grade > W.grade; } }; vector<Node
转载 2021-02-16 20:27:00
52阅读
Given a list of N student records with name, ID and grade. You are supposed to sort the records with respect to the grade in non-increasing order, and
转载 2018-03-23 10:58:00
13阅读
Given a list ofNstudent records with name, ID and grade. You are supposed to sort the records with respect t
原创 2022-05-25 17:51:12
59阅读
返回目录题意有n位考生,将考生按分数高到低排序,输出符合指定范围[gradel,gradeh]分数的考生,若没有考生在该范围,则输出NONE输出格式为(name id)样例(可复制)4Tom CS000001 59Joe Math990112 89Mike CS991301 100Mary EE990830 9560 100样例输出Mike CS991301Mary ...
原创 2022-07-14 17:37:52
25阅读
1083 List Grades (25 point(s))Given a list of N student records with name, ID and g
原创 2022-09-15 11:05:48
54阅读
N个学生name,id, grade分数grade 唯一,范围[0,100]求分数在[grade1,grade2]范围内的用得到vector 和pair。也可以直接用两个数组开到101,并且初值标记;pair 链接http://www.cnblogs.com/cszlg/archive/2013/03/10/2952807.html
原创 2022-11-25 11:14:04
20阅读
1083List Grades(25分)Given a list ofNstudent records with name, ID and grade. Yo
原创 2022-09-19 15:41:30
53阅读
1083. List Grades (25)时间限制400 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueGiven a list of N student records with name, ID and grade. You are sup...
转载 2015-07-21 18:38:00
82阅读
2评论
题目链接Given a list of N student records with name, ID and grade. You are supposed to sort the records with respect to the grade in non-increasing order, and output those student records of which the g...
原创 2021-07-12 10:17:20
70阅读
1083. List Grades (25)时间限制400 ms内存限制65536 kB代码长度限制16000
原创 2022-11-09 18:18:35
43阅读
1083 List Grades (25 分)Given a list of N student records with name, ID and grade. You are supposed to sort the records with respect to the grade in non-increasing order, and output those student records of which the grades are in a given interval.Input S
原创 2021-07-07 10:54:23
83阅读
写在前面实现思路结构体封装学生元数据信息非递增排序循环,区间合法打印输出
原创 2022-08-23 15:50:09
21阅读
https://pintia.cn/problem-sets/994805342720868352/problems/9948053839299051521083 List Grades (25)(25 分)Given a list of N student records with name, ID and grade. You are supposed to sort the reco...
原创 2021-08-25 13:54:10
44阅读
PAT (Advanced Level) Practice 1083 List Grades (25 分) 凌宸1642 题目描述: Given a list of N student records with name, ID and grade. You are supposed to sort ...
转载 2021-08-09 01:45:00
77阅读
2评论
Problem Description:Given a list ofNstudent reort the records with respect to the grade in non-increasing order, and output those student record...
原创 2023-06-28 15:36:44
29阅读
![](https://img2023.cnblogs.com/blog/1991547/202305/1991547-20230515213533208-1372545559.png)
l[
原创 2023-05-20 02:33:40
149阅读
  • 1
  • 2
  • 3
  • 4
  • 5