主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
小酒
2024年3月20日 15:46
成绩再次排序 题解:
P1817
回复 0
|
赞 0
|
浏览 440
1817题目解析 #include <bits/stdc++.h> using namespace std; struct Student{ string name; int y; int m; int yu; int sum; }stu[1005]; bool cmp(Student a,Student b) { if(a.sum!=b.sum) return a.sum>b.sum; else if(a.y!=b.y) return a.y>b.y; else if(a.m!=b.m) return a.m&...
小王桐学
2024年2月27日 17:18
成绩再次排序 题解:C
P1817
回复 0
|
赞 0
|
浏览 534
#include <stdio.h> typedef struct{ char name[20]; int Math,Eng,Ch; int sum; }Student; //排序 void Sort(Student s[],int n) { int i,j; Student t; for(i = 0; i < n-1; i++) for(j = 1; j < n-i; j++) { if(s[j].sum > s[j-1].sum) { t = s[j]; s[...
ZCD
2024年2月7日 16:57
成绩再次排序 题解:
P1817
回复 0
|
赞 1
|
浏览 638
#include<iostream> #include<algorithm> #include<cstring> using namespace std; struct Student { string name; int yu;//语文 int shu;//数学 int wai;//英语 int id;//输入的先后顺序标志 &...
My_opt
2022年4月30日 14:26
stable_sort
P1817
回复 2
|
赞 1
|
浏览 6.4k
#include <iostream> #include <algorithm> using namespace std; const int N = 1010; struct node { string name; int c, m, e; int sum; }s[N]; bool cmp(node a, node b) { if (a.sum != b.sum) return a.sum > b.sum; else if (a.c != b.c) return a.c > b.c; else if...
老猫
2021年1月31日 12:51
打卡
P1817
回复 0
|
赞 0
|
浏览 9.1k
#include<cstdio> #include <vector> #include <string> #include <string.h> #include<iostream> #include<algorithm> using namespace std; const int maxn=1000+5; struct node { string name; int id; double y;//语文 double s;//数学 double e;//英语 doubl...
题目
成绩再次排序
题解数量
5
发布题解
热门题解
1
stable_sort
2
成绩再次排序 题解:
3
成绩再次排序 题解:C
4
打卡
5
成绩再次排序 题解: