题解 2212: 蓝桥杯算法训练-景点游览

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

筛选

简单易懂还是STL香

摘要:#include<bits/stdc++.h> using namespace std; //写一个仿函数 class MyPrint { public:  voi……

sort练习升序处理

摘要:解题思路:注意事项:                     sort(a,a+n);表示a数组升序;                  sort(a,a+n,greater<int>());表示a数……