主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
可可爱爱草莓派
2024年8月27日 14:46
解题思路
P1338
回复 0
|
赞 0
|
浏览 967
#include<bits/stdc++.h> using namespace std; struct excel{ int p; string name; int grade; }stu[100010]; bool p_cmp(excel a,excel b){ return a.p < b.p; } bool name_cmp(excel a,excel b){ return a.name < b.n...
18237466773
2024年3月12日 21:43
EXCEL排序 题解:通过率只有75%,求大佬帮忙看一下哪里出问题了
P1338
回复 5
|
赞 0
|
浏览 605
#include<bits/stdc++.h> using namespace std; struct Student{ int id; char name[5000]; int score; }; int cmp1(Student a,Student b){ return a.id<b.id; } int cmp2(Student a,Student b){ if(a.name...
yanmy
2024年3月22日 16:20
简洁
P1338
回复 0
|
赞 0
|
浏览 628
#include <iostream> #include <algorithm> #include <string> #include <vector> using namespace std; struct Student { string id; string name; int score; }; bool cmp1(Student a, Student b) { return a.id < b.id; } bool cmp2(Student a, Student...
绿城
2024年1月21日 13:56
EXCEL排序 题解:
P1338
回复 2
|
赞 1
|
浏览 736
结构体排序 因为数量n<=100000 所以本题使用快速排序 编程前建立一个结构体来保存学号 姓名 考试成绩,代码如下 #include<stdio.h> #include<math.h> #include<string.h> struct student { char xuehao[10]; char xingming[10]; int chengji; }score[100000];//快排...
gallopzhang
2022年8月12日 09:27
特殊的排序规则
P1338
回复 0
|
赞 1
|
浏览 5.0k
利用空格分别输入学号、姓名与成绩信息,编写比较函数实现排序规则: 1. 当C=1时,直接根据学号排序 2. 当C=2时,如果姓名相同,则根据学号排序;否则根据姓名排序 3. 当C=3时,如果成绩相同,则根据学号排序;否则根据成绩排序 #include <bits/stdc++.h> using namespace std; struct Student { char no[6]; int grade; char name[10...
杨德胜
2021年3月8日 20:07
P1338 解题思路分享
P1338
回复 0
|
赞 0
|
浏览 6.7k
#include <bits/stdc++.h> using namespace std; struct tt{ string id,name; int grade; }; bool cmp1(tt a, tt b){ a.id<b.id; } bool cmp2(tt a, tt b){ return a.name<b.name; } bool cmp3(tt a, tt b){ return a.grade<b.grade; } int main() { ...
chenziyi
2020年4月16日 16:52
说好的case i...i呢
P1338
回复 0
|
赞 1
|
浏览 9.0k
题目出错了?ac都没写i如题
题目
EXCEL排序
题解数量
7
发布题解
热门题解
1
EXCEL排序 题解:
2
特殊的排序规则
3
说好的case i...i呢
4
简洁
5
EXCEL排序 题解:通过率只有75%,求大佬帮忙看一下哪里出问题了
6
解题思路
7
P1338 解题思路分享