首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
p9843专题
P9843 [ICPC2021 Nanjing R] Paimon Sorting 题解 (SPJ)
[ICPC2021 Nanjing R] Paimon Sorting 传送门 题面翻译 给出一个排序算法(用伪代码表示): // 排序算法SORT(A)for i from 1 to n // n 是序列 A 的元素个数for j from 1 to nif a[i] < a[j] // a[i] 是序列 A 的第 i 个元素Swap a[i] and a[j] 请你算出对于一个序列
阅读更多...