#include <iostream> #include <vector> #include <algorithm> using namespace std; //方法1 // void mySort(vector<int>&v, int a) { // //升序 // sort(v.begin(), v.end()); // //降序 // if (a == 1) // reverse(v.begin(), v.end()); //将数组反转 // } //方法2 void my...