#include <iostream> #include <vector> #include <algorithm> using namespace std; class Student { public: string name; int mark; }; //需要一个稳定的排序算法 void my_merge(int l, int mid, int r, vector<Student>& v, int way) { vector<Student> tmp; // cout <...