From b527f9bf71dc74b27f6fd22e313581f8e4370c9a Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Wed, 13 Feb 2019 07:40:43 +0200 Subject: [PATCH] Add more links for further readings for graph DFS. --- src/algorithms/graph/depth-first-search/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/algorithms/graph/depth-first-search/README.md b/src/algorithms/graph/depth-first-search/README.md index 30f22ee7..b22a8aa9 100644 --- a/src/algorithms/graph/depth-first-search/README.md +++ b/src/algorithms/graph/depth-first-search/README.md @@ -13,3 +13,4 @@ along each branch before backtracking. - [Wikipedia](https://en.wikipedia.org/wiki/Depth-first_search) - [Tree Traversals (Inorder, Preorder and Postorder)](https://www.geeksforgeeks.org/tree-traversals-inorder-preorder-and-postorder/) - [BFS vs DFS](https://www.geeksforgeeks.org/bfs-vs-dfs-binary-tree/) +- [DFS Visualization](https://www.cs.usfca.edu/~galles/visualization/DFS.html)