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

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

筛选

思路简单,清晰明了

摘要:#这题目 我直接反手一个sort()排序 ###一开始把数组设置了a[1000],没想到过了。我怕出问题,然后我直接弄到了a[1000000],还行也过了,就是内存大点。 ``` #includ……

2059: [STL训练]sort练习

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

优先队列的使用

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

2059: [STL训练]sort练习

摘要:#include <bits/stdc++.h> using namespace std; bool cmp(int &a,int &b){     return a>b; } in……