C语言实现哈密尔顿hamiltonian算法 完整Graph.h 头文件 完整Graph.c 源文件文件 完整hamiltonian.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