From 2e43bbdfb30d1ed115f0fe1597bd22e59d57d2ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Hl=C3=A1sek?= Date: Sat, 8 Aug 2020 19:12:03 -0700 Subject: [PATCH] Rename dfs to depth_first_search.: --- DIRECTORY.md | 4 ++-- graph/{dfs.cpp => depth_first_search.cpp} | 0 .../{dfs_with_stack.cpp => depth_first_search_with_stack.cpp} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename graph/{dfs.cpp => depth_first_search.cpp} (100%) rename graph/{dfs_with_stack.cpp => depth_first_search_with_stack.cpp} (100%) diff --git a/DIRECTORY.md b/DIRECTORY.md index 76fa1154d..3ad77d592 100644 --- a/DIRECTORY.md +++ b/DIRECTORY.md @@ -78,8 +78,8 @@ * [Connected Components](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/connected_components.cpp) * [Connected Components With Dsu](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/connected_components_with_dsu.cpp) * [Cycle Check Directed Graph](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/cycle_check_directed_graph.cpp) - * [Dfs](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/dfs.cpp) - * [Dfs With Stack](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/dfs_with_stack.cpp) + * [Depth-First Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/depth_first_search.cpp) + * [Depth-First Search With Stack](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/depth_first_search_with_stack.cpp) * [Dijkstra](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/dijkstra.cpp) * [Hamiltons Cycle](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/hamiltons_cycle.cpp) * [Kosaraju](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/kosaraju.cpp) diff --git a/graph/dfs.cpp b/graph/depth_first_search.cpp similarity index 100% rename from graph/dfs.cpp rename to graph/depth_first_search.cpp diff --git a/graph/dfs_with_stack.cpp b/graph/depth_first_search_with_stack.cpp similarity index 100% rename from graph/dfs_with_stack.cpp rename to graph/depth_first_search_with_stack.cpp