蓝桥杯算法提高-成绩排名,重载运算符实现 摘要:```c++ #include #include #include using namespace std; struct stu{ string name; …… 题解列表 2023年08月03日 0 点赞 0 评论 109 浏览 评分:0.0
Python成绩排名 摘要:解题思路:注意事项:list.sort(key=lambda x:(x[0],-x[1])) # 先按第一个返回值排序,排序完成之后, 如果第一个返回值相等,然后再按照第二个返回值排序参考代码:n=i…… 题解列表 2023年02月09日 0 点赞 0 评论 50 浏览 评分:0.0
2256: 蓝桥杯算法提高-成绩排名 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>typedef struct score{ char name[100]; int sc; }sco…… 题解列表 2022年07月30日 0 点赞 0 评论 420 浏览 评分:0.0
multimap容器复习 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>#include<string>#include<map>using namespace std;st…… 题解列表 2022年03月16日 0 点赞 0 评论 140 浏览 评分:0.0
2256: 蓝桥杯算法提高-成绩排名 暴力 好理解(傻瓜吊API方法) 摘要: import java.util.Collections; import java.util.Comparator; import java.util.LinkedList…… 题解列表 2022年03月03日 0 点赞 0 评论 195 浏览 评分:9.9
2256: 蓝桥杯算法提高-成绩排名 摘要:解题思路:注意事项:参考代码:n=int(input()) d=[] for i in range(n): a,b=map(str,input().split()) …… 题解列表 2022年02月11日 0 点赞 1 评论 139 浏览 评分:9.9
编写题解 2256: 蓝桥杯算法提高-成绩排名(python) 摘要:解题思路:注意事项:参考代码:a=int(input())t={}for i in range(0,a): x=input().split() t[x[0]]=int(x[1])a=sor…… 题解列表 2022年01月12日 0 点赞 0 评论 156 浏览 评分:0.0
结构体解题(c语言代码) 摘要:#include <stdio.h> #include <string.h> struct stu { char s[20]; int f; }; int main() { i…… 题解列表 2021年11月04日 0 点赞 0 评论 310 浏览 评分:9.9
蓝桥杯算法提高-成绩排名 摘要:import java.util.Arrays; import java.util.Collection; import java.util.HashMap; import java.util.…… 题解列表 2021年03月21日 0 点赞 0 评论 334 浏览 评分:9.9
成绩排名(java)简单粗暴 摘要:import java.util.Arrays; import java.util.Collections; import java.util.Scanner; public class M…… 题解列表 2021年03月01日 0 点赞 0 评论 146 浏览 评分:0.0