WU-蓝桥杯算法提高VIP-班级排名 (C++代码) 摘要:参考代码:#include<iostream> #include<cstring> #include<algorithm> using namespace std; struct ST//自定…… 题解列表 2017年12月28日 4 点赞 0 评论 849 浏览 评分:9.9
蓝桥杯算法提高VIP-班级排名 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<malloc.h>//对成绩进行排名,并输出DaDa的排名int paiming(…… 题解列表 2018年01月22日 0 点赞 0 评论 932 浏览 评分:0.0
蓝桥杯算法提高VIP-班级排名 (C++代码) 摘要:参考前排大神的代码,并加以重构,简化了代码的复杂度。感谢 WU 大神~注意事项:通过结构体的建立,可以更有条理的建立题目逻辑因为达达只有一个,所以用break大大减小了计算量(如果不用,则会输出超…… 题解列表 2018年02月09日 1 点赞 0 评论 1258 浏览 评分:9.9
蓝桥杯算法提高VIP-班级排名 (Java代码) 摘要:解题思路:注意事项:参考代码: import java.util.HashMap; import java.util.Map; import java.util.Scanner; publ…… 题解列表 2018年03月14日 1 点赞 0 评论 1055 浏览 评分:9.9
蓝桥杯算法提高VIP-班级排名 (C语言代码) 摘要:#include<iostream> #include<algorithm> #include<map> #include<vector> #include<iterator> using …… 题解列表 2018年03月26日 1 点赞 0 评论 870 浏览 评分:0.0
蓝桥杯算法提高VIP-班级排名 (C语言代码) 摘要:解题思路:根据数据规模和约定,学生总数不超过100,名字长度不超过30,定义学生表p[100][31],对应总分表s[100];首先,输入N个学生的姓名,第一行p[0]是"DaDa",对应的总分是s[…… 题解列表 2018年07月15日 1 点赞 0 评论 1781 浏览 评分:9.9
蓝桥杯算法提高VIP-班级排名 (C++代码) 摘要:写了很久这题,一直没看到时总分的排名,提交一直错误,读了好几遍题目才看到#include"iostream" #include "string" #include "algorithm" usi…… 题解列表 2018年08月05日 1 点赞 0 评论 572 浏览 评分:0.0
蓝桥杯算法提高VIP-班级排名 (C++代码)结构体解决 摘要:解题思路:typedef struct student{ string name; int score;}stu;一个结构体,存名字和分数按照题意输入成绩和姓名,成绩是累加的,在处理同分的情况,我们先…… 题解列表 2018年08月20日 12 点赞 1 评论 474 浏览 评分:0.0
蓝桥杯算法提高VIP-班级排名 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <vector>#include <algorithm>#include <string>#include <st…… 题解列表 2018年10月05日 0 点赞 0 评论 658 浏览 评分:0.0
求助!有什么问题没考虑到吗? (c语言,大部分注释都写啦) 摘要:解题思路:注意事项:思路我觉得没问题,希望同学们可以帮我看看哪里有问题,提交不过是因为什么?参考代码:#include<stdio.h>#include<string.h>typedef struct…… 题解列表 2018年10月10日 3 点赞 0 评论 1040 浏览 评分:0.0