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

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

筛选

思路简单,清晰明了

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

2059: [STL训练]sort练习

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

c++sort简单解法

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

2059: [STL训练]sort练习

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