blob: 62199698cf197f1d1f7b2ab68a894326ee6a3c74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "graph.h"
int main(void)
{
graph gh;
bool directed = true;
initializeGraph(&gh,directed);
readGraph(&gh,directed);
printGraph(&gh);
bfs(&gh, 1);
purgeGraph(&gh);
return 0;
}
|