// // Created by 31416 on 24-12-4. // #ifndef GRAPH_H #define GRAPH_H #include using namespace std; template class Graph { private: vector ids; Graph *node; int max_id; public: Graph() { ids.clear(); node = NULL; max_id = 0; } }; #endif //GRAPH_H