Posts

  • Exploring the Basics of Depth First Search (DFS) Algorithm

    Tuesday, 18 Oct 2022

    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...