MCPcopy Create free account
hub / github.com/Linloir/GraphBuilder / DFS

Method DFS

graph_implement.h:131–131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

129 void ResetDistance();
130 void DFS(int strtID, bool generateForest = false);
131 void DFS(MyGraphicsVexItem *strtVex, bool generateForest = false){DFS(GetIdOf(strtVex), generateForest);}
132 void BFS(int strtID, bool generateForest = false);
133 void BFS(MyGraphicsVexItem *strtVex, bool generateForest = false){BFS(GetIdOf(strtVex), generateForest);}
134 void Dijkstra(int strtID);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected