1739: 成绩排序 摘要:结构体的排序,自己写一个 sort 函数的比较算法就好了。#include<bits/stdc++.h> using namespace std; struct student{ s…… 题解列表 2021年12月18日 0 点赞 0 评论 210 浏览 评分:0.0
成绩排序—题解(C 语言代码)——坑以说明 摘要: 注意写这个题目的时候要注意名字相同时,对年龄排序,之前就是卡在这里卡了好些时间,还以为需要进行排序优化。 题目:https://www.dotcpp.com/oj/problem1739.h…… 题解列表 2021年10月03日 0 点赞 0 评论 440 浏览 评分:9.9
成绩排序-题解(C语言) 摘要:```c #include #include struct a{ char b[101]; int c; int d; }student[1000],temp; int main…… 题解列表 2021年09月11日 0 点赞 0 评论 160 浏览 评分:0.0
成绩排序(多多指教) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct students{char name[101];int age;i…… 题解列表 2021年05月04日 0 点赞 0 评论 188 浏览 评分:0.0
优质题解 题解 1739: 成绩排序(C语言)详细解释 摘要:解题思路: 首先通过结构体来存储这些数据struct student{ char name[200]; int age; int score; }stu[1005]; …… 题解列表 2021年05月04日 0 点赞 13 评论 2729 浏览 评分:9.6
朴实无华的解法,只要你懂结构体,冒泡排序,strcmp函数,就能看得懂。 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>struct student{ char name[101]; int age; …… 题解列表 2021年04月02日 0 点赞 0 评论 190 浏览 评分:0.0
优质题解 成绩排序-题解(C语言代码)此题多坑! 摘要:解题思路:一开始我的思路是此题结构体大小应该根据每次输入的n值来分配,但是分配内存时没有考虑到连续性,不能使用qsort来排序,需要自己编写排序函数。于是嫌麻烦偷懒,先建立大小为1000的结构体数组,…… 题解列表 2021年02月27日 0 点赞 1 评论 1861 浏览 评分:9.5
成绩排序-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct data{ char str[101]; …… 题解列表 2020年11月26日 0 点赞 0 评论 283 浏览 评分:0.0
成绩排序-题解(C语言代码) 摘要:解题思路: 结合结构体与数组 用swap函数替换 达成排序,这里是将小的值排到前面 有些许参考https://blog.dotcpp.com/a…… 题解列表 2020年11月25日 0 点赞 0 评论 170 浏览 评分:0.0
成绩排序-题解(C++代码) 摘要:解题思路:排序注意事项:1:均是从小到大排序2:多组输入参考代码:#include<iostream>using namespace std;#include<algorithm>#include<c…… 题解列表 2020年11月09日 0 点赞 0 评论 382 浏览 评分:8.0