From d86b6dea0cdafd371965029bf21552743b221784 Mon Sep 17 00:00:00 2001 From: Abdurrezzak Efe Date: Mon, 30 Oct 2017 17:32:18 +0300 Subject: [PATCH] Update 12.BFS.cpp --- 12.BFS.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/12.BFS.cpp b/12.BFS.cpp index 5122c62..4680930 100644 --- a/12.BFS.cpp +++ b/12.BFS.cpp @@ -1,3 +1,9 @@ +/* + * This program applies BFS on a graph constructed from the inputs of the user + * + * Coded by: Abdurrezak EFE + * + * */ #include #include #include @@ -67,4 +73,4 @@ int main() cin >> u >> w, g.add_edge(u,w); g.BFS(0); //starting BFS from vertex 0 -} \ No newline at end of file +}