C语言递归实现DFS算法 完整Graph.h 头文件 完整Graph.c 源文件文件 完整dfs_recursive.c 源文件(main测试函数) 完整Graph.h 头文件 #include <stdbool.h> typedef struct GraphRep *Graph; // vertices are ints typedef int Vertex; // edges are pairs of vertices (end-points) typedef struct Edge