题解 2059: [STL训练]sort练习

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

最简单的方法

摘要:解题思路:运用sort函数注意事项:sort函数是由小到大排序 逆序输出排序后的m个数组元素即可参考代码:#include<bits/stdc++.h>#define int long l……

sort练习---python

摘要:解题思路:注意事项:参考代码:n,m=map(int,input().split())l=list(map(int,input().split())) #要把列表中的数设为Int型,才能适应sort(……

这个够简短了吧

摘要:解题思路:利用方向输出来从大到小输出注意事项:参考代码:#include<iostream>#include<algorithm>#include<vector>u……

2059: [STL训练]sort练习

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;bool compare(int a,int b){  ……

优先队列的使用

摘要:#include<bits/stdc++.h> using namespace std; priority_queue<int>v;//大根堆 int main() {     int n,……

2059: [STL训练]sort练习

摘要:解题思路:注意事项:参考代码:sort排序从后向前输出#include<bits/stdc++.h> int main() {     int m,n;     int arr[1000]; ……

c++sort简单解法

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip>#include<math.h>#include<algorithm>using namespac……

[STL训练]sort练习

摘要:# STL sort ## 头文件 ```c++ #include ``` # 完整代码 ```c++ #include #include #include int mai……