主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
小王桐学
2024年3月9日 22:57
成绩排序 - 西电 题解:C
P1733
回复 0
|
赞 0
|
浏览 606
#include <stdio.h> typedef struct{ int y,m,d,score; }XiaoM; void Sort(XiaoM x[],int n) { int i,j; XiaoM t; for(i = 0; i < n-1; i++) for(j = 1; j < n-i; j++) if(x[j].score > x[j-1].score) { t = x[j]; x[j] = x[j-1]; x[j-1] = t; } el...
tongzeliang
2022年4月23日 14:23
使用multiset容器,字符串截取+自定义排序规则实现
P1733
回复 0
|
赞 1
|
浏览 3.5k
#include<string> #include<iostream> #include<set> using namespace std; class Person { public: Person() { } Person(int year,int month,int day, int score) {  ...
Dipper
2022年4月9日 22:40
日期排序
P1733
回复 0
|
赞 2
|
浏览 5.5k
#include<iostream> #include<algorithm> using namespace std; struct Student{ int year, month, day, grade; }stu[105]; bool cmp(Student a, Student b){ if(a.grade != b.grade) return a.grade > b.grade; else if(a.year !...
题目
成绩排序 - 西电
题解数量
3
发布题解
热门题解
1
日期排序
2
使用multiset容器,字符串截取+自定义排序规则实现
3
成绩排序 - 西电 题解:C