Python3 给定一些同学的信息(名字,成绩)序列,请你将他们的信息按照成绩从高到低或从低到高的排列,相同成绩 都按先录入排列在前的规则处理。注:0代表从高到低,1代表从低到高 数据范围:人数:1≤n≤200 进阶:时间复杂度:O(nlogn) ,空间复杂度: O(n)
```python
def sort_students(students, order):
sorted_students = sorted(students, key=lambda x: (x[1], students.index(x)), reverse=order)
return sorted_students
students = [('Alice', 85), ('Bob', 75), ('Charlie', 90), ('David', 75)]
order = 0
sorted_students = sort_students(students, order)
for student in sorted_students:
print(student[0], student[1])
```
在这个示例中,我们定义了一个`sort_students`函数,它接受学生信息列表和排序顺序作为参数,并根据成绩从高到低或从低到高对学生进行排序。我们使用`sorted`函数并指定`key`参数来实现按照特定规则排序。最后打印出排好序的学生信息。
转载请注明出处或者链接地址:https://www.qianduange.cn//article/5201.html
发布的文章
用js生成小米商城
2024-04-27 21:04:59
网页汇率计算器vue代码
2024-04-26 13:04:44
vue3绘制内容自动无缝滚动表格
2024-04-25 16:04:07
npm ERR! code CERT_HAS_EXPIRED npm ERR! errno CERT_HAS_EXPIRED npm ERR! request to https://registry.
2024-04-20 17:04:38
vue里使用样式color: var(--Editor-text),已经定义了--Editor-text,但是却显示变量--Editor-text未定义,为啥
2024-04-25 08:04:19
wangEditor设置初始文字颜色
2024-04-23 15:04:38
Golang 使用 Gin 框架接收 HTTP Post 请求体中的 JSON 数据
2024-04-23 22:04:53
Python读写Json文件
2024-04-23 22:04:19
【头歌】——数据分析与实践-python-网络爬虫-Scrapy爬虫基础-网页数据解析-requests 爬虫-JSON基础
2024-04-23 22:04:19
ObjectMapper转化对象常用方法(转LIst、Map,以及Type、JavaType、constructType的学习)
2024-04-23 22:04:02
大家推荐的文章