信息学奥赛一本通T1178-成绩排序-题解(C++代码) 摘要:# 自定义排序cmp即可 ```c #include using namespace std; struct T{ string a; int b; }a[25]; bool…… 题解列表 2020年07月21日 0 点赞 2 评论 1441 浏览 评分:6.5
信息学奥赛一本通T1178-成绩排序-题解(C++代码)喜欢pair吗~ 摘要:解题思路:注意事项:注意排序规则即可~参考代码:#include <iostream> #include <algorithm> using namespace std; typedef pai…… 题解列表 2020年12月18日 1 点赞 0 评论 484 浏览 评分:6.9
信息学奥赛一本通T1178-成绩排序-题解(C++代码)间接排序~ 摘要:解题思路:结构体有很多大佬们写了,我就先来一个 间接排序 之后再来一个 pair注意事项:注意排序规则,和使用方法。参考代码:#include <iostream> #include <algori…… 题解列表 2020年12月18日 0 点赞 0 评论 921 浏览 评分:7.7
信息学奥赛一本通T1178-成绩排序-题解(Java代码) 面向对象 摘要:解题思路: 面向对象,构造对象,重写方法注意事项:参考代码:import java.util.Arrays; import java.util.Scanner; class Main i…… 题解列表 2021年02月15日 0 点赞 0 评论 1494 浏览 评分:9.9
冒泡排序法解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct stu{ char name[20]; int score;};int…… 题解列表 2021年04月19日 0 点赞 0 评论 428 浏览 评分:9.9
成绩排序 (Java代码) 摘要:import java.util.Scanner; class student{ String name; int score; } public class Main{…… 题解列表 2022年05月16日 0 点赞 0 评论 383 浏览 评分:9.9
2330: 信息学奥赛一本通T1178-成绩排序 摘要:```cpp #include #include using namespace std; typedef struct student { char m[20]; in…… 题解列表 2023年02月15日 0 点赞 0 评论 247 浏览 评分:9.9
2330: 信息学奥赛一本通T1178-成绩排序 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<bits/stdc++.h> using namespace std; struct dev { …… 题解列表 2023年10月28日 0 点赞 0 评论 65 浏览 评分:0.0
冒泡排序c++ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{ string name; doubl…… 题解列表 2023年11月09日 0 点赞 0 评论 111 浏览 评分:9.9
JAVA面向对象解法(含Comparator使用,建议先去了解Comparator的相关使用再看本题解) 摘要:解题思路:注意事项:参考代码:import java.util.*;class Stu { String name; int cj; public Stu(String name, …… 题解列表 2024年02月08日 0 点赞 0 评论 110 浏览 评分:9.9