#include <iostream> using namespace std; struct Student{ string name; struct Student* next; }; struct grade { Student* n = nullptr; Student* rear = nullptr; }H[105]; int main() { int n; int type; while (cin >> n) { // 注意 while 处理多个 case cin >>...