Tagged Questions
1
vote
0answers
343 views
Breadth- and Depth-first search code
Here is my breadth-first search (bfs) and depth-first search (dfs) code for graph traversal. Please give me some constructive reviews on it.
Thanks for any help.
#include<stdio.h>
...