]> wirehaze git hosting - graph-theory.git/blob - graph/bfs.h

wirehaze git hosting

add bfs
[graph-theory.git] / graph / bfs.h
1 #ifndef BFS_H
2 #define BFS_H
3
4 #include "graph/adj.h"
5
6 struct graph *bfs (struct graph *g);
7
8 #endif /* BFS_H */