Exploring the Basics of Depth First Search (DFS) Algorithm

18 Oct 2022 · 3 minutes read

Depth first search (DFS) is an algorithm for searching graph or tree type data structures. Another algorithm Breadth first search (BFS) is often heard with DFS. The purpose of these algorithims are same - traversing a graph or three. However, there are some fundamental...