#include <iostream> #include<vector> #include<string> #include<sstream> #include<unordered_map> #include<algorithm> #include<set> using namespace std; //表示图中的节点, //把图建出来, struct node { // type = 1是class,type=2是实例 int type; string s; vector<...