#include #include #include #include "Graph.h" #include "GraphPrivate.h" void dfs(Graph g, Vertex src) { printf("DFS starting from %d: ", src); // TODO printf("\n"); } void dfsFindPath(Graph g, Vertex src, Vertex dest) { printf("DFS path from %d to %d: ", src, dest); // TODO printf("\n"); }