2059: [STL训练]sort练习 摘要:解题思路:注意事项:参考代码:sort排序从后向前输出#include<bits/stdc++.h> int main() { int m,n; int arr[1000]; …… 题解列表 2023年10月24日 0 点赞 0 评论 129 浏览 评分:0.0
[STL训练]sort练习-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Arrays; import java.util.Collections; import java.util.Scanner; …… 题解列表 2021年01月29日 0 点赞 0 评论 312 浏览 评分:0.0
优先队列的使用 摘要:#include<bits/stdc++.h> using namespace std; priority_queue<int>v;//大根堆 int main() { int n,…… 题解列表 2024年07月22日 0 点赞 0 评论 53 浏览 评分:0.0
2059: [STL训练]sort练习 摘要:解题思路:注意事项:参考代码:n,m = map(int,input().split()) lis = list(map(int,input().split())) lis.sort(revers…… 题解列表 2022年01月12日 0 点赞 0 评论 231 浏览 评分:0.0
[STL训练]sort练习-题解(各语言代码) 摘要:**python** ```python from heapq import nlargest print(*nlargest(int(input().split()[1]),map(int,i…… 题解列表 2022年04月01日 0 点赞 0 评论 233 浏览 评分:0.0
[STL训练]sort练习(纯纯的c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int m,n,i,t,p; scanf("%d%d",&n,&m); int a[n]; for(i=0;i…… 题解列表 2022年01月28日 0 点赞 0 评论 230 浏览 评分:0.0
从大到小的顺序输出其中前m大的数 摘要:解题思路:注意事项:参考代码:n,m = map(int,input().split())L = list(map(int,input().split()))L.sort(reverse = True…… 题解列表 2023年01月14日 0 点赞 0 评论 71 浏览 评分:0.0
[STL训练]sort练习 摘要:```cpp #include using namespace std; #include int main(){ int n,m; cin >> n >> m; list l…… 题解列表 2022年02月27日 0 点赞 0 评论 141 浏览 评分:0.0
c++sort简单解法 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip>#include<math.h>#include<algorithm>using namespac…… 题解列表 2023年10月17日 0 点赞 0 评论 72 浏览 评分:0.0
2059: [STL训练]sort练习 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;bool compare(int a,int b){ …… 题解列表 2024年11月18日 0 点赞 0 评论 67 浏览 评分:0.0