题解 1739: 成绩排序

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1739: 成绩排序 sort+结构体 包看懂

摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义结构体xs,包含三个成员变量:字符串x、整数y和整数z stru……

编写题解 1739: 成绩排序 -java比较器

摘要:解题思路: 利用集合的sort进行排序(重写比较器)注意事项: 第一排序条件为成绩 其次姓名 最后年龄参考代码:import java.util.ArrayList; import java.uti……

c代码记录之成绩排序

摘要:解题思路:注意事项:多组输入代码实现二级动态数组的内存分配及释放strcmp及strcpy函数参考代码:#include<stdio.h> #include<string.h> int main(……

1739: 成绩排序 (坑很多)

摘要:解题思路:注意事项:1.成绩小的在前  2.名字小的在前(比较的整个字符串不是首字母) 3.年龄小的在前参考代码:#include<stdio.h> typedef struct{ char a[10……

成绩排序(Python实现)

摘要:解题思路:注意事项:参考代码:def sort_students(students):    students.sort(key=lambda x: (x[2], x[0], x[1]))    re……

题目 1739: 成绩排序

摘要:解题思路:注意事项:参考代码:def compare_students(student):    name, age, score = student    return (score, name, ……

C++类的思想题解

摘要:解题思路:使用类的思想,其他的就不说了别的地方都有写。注意事项:参考代码:#include<iostream>using namespace std;class Student {private: s……