The DFS algorithm, or Depth-First Search algorithm, explores or searches a graph or tree. It operates by venturing as far as possible along each branch before retracing its steps. This traversal method follows a depth-first approach, prioritizing the exploration of the deepest nodes first. By utilizing a stack data structure, DFS effectively keeps track of nodes to visit.
The origins of the DFS algorithm can be traced back to graph theory, where mathematicians and computer scientists have made significant contributions over time. This versatile algorithm finds applications in various domains, such as finding connected components, detecting cycles, solving puzzles, and conducting graph-based searches.
General Working
The general working of DFS can be summarized in the following step-by-step process:
- Start by selecting a node as the starting point or root node.
- Create a stack data structure and place the starting node on top of the stack.
- Mark the starting node as visited to keep track of the nodes that have been explored.
- Continuously perform the following steps until the stack is empty:
- Retrieve the top node from the stack (using the pop operation).
- Visit or process the popped node.
- Examine the neighboring nodes of the popped node.
- If a neighboring node has not been visited, mark it as visited and push it onto the stack.
- Repeat steps 4a-4d until either all nodes have been visited or a specific condition or goal is met.
This iterative process ensures that the algorithm explores the graph or tree in a depth-first manner, delving as far as possible along each branch before backtracking. By utilizing a stack, the algorithm effectively keeps track of the nodes to visit, facilitating systematic exploration of the graph or tree.
The DFS algorithm’s effectiveness lies in its ability to exhaustively explore the deepest nodes first, gradually moving towards shallower nodes. This approach enables thorough traversal of the structure and finds applications in various tasks, including finding connected components, detecting cycles, solving puzzles, and performing graph-based searches.
Example
Sure! Let’s consider a simple graph to explain the working of the DFS algorithm step-by-step. Here’s an example graph:

Step 1: Initialization
To begin, we select node A as the root node, marking it as the starting point. Additionally, we create an empty stack to track the nodes to be visited.
Step 2: Iteration 1
In this iteration, we push node A onto the stack.
Tabular representation:
Visited | Stack |
---|---|
A | A |
Step 3: Iteration 2
We pop node A from the stack, visit it, and examine its neighboring nodes (B and C). Then, we push the unvisited neighboring nodes onto the stack, marking them as visited.
Tabular representation:
Visited | Stack |
---|---|
A | C, B |
Step 4: Iteration 3
We pop node B from the stack, visit it, and examine its neighboring nodes (D and E). Next, we push the unvisited neighboring nodes onto the stack, marking them as visited.
Tabular representation:
Visited | Stack |
---|---|
A, B | C, E, D |
Step 5: Iteration 4
We pop node D from the stack, visit it, and find that it has no unvisited neighboring nodes. As a result, we proceed to the next step.
Tabular representation:
Visited | Stack |
---|---|
A, B, D | C, E |
Step 6: Iteration 5
We pop node E from the stack, visit it, and find no unvisited neighboring nodes. Hence, we move on to the following step.
Tabular representation:
Visited | Stack |
---|---|
A, B, D, E | C |
Step 7: Iteration 6
We pop node C from the stack, visit it, examine its neighboring node F, and push F onto the stack after marking it as visited.
Tabular representation:
Visited | Stack |
---|---|
A, B, D, E, C | F |
Step 8: Iteration 7
We pop node F from the stack, visit it, and discover that it has no unvisited neighboring nodes. Consequently, we proceed to the next step.
Tabular representation:
Visited | Stack |
---|---|
A, B, D, E, C, F |
Step 9: Termination
The DFS algorithm concludes its traversal of the graph when it empties the stack and visits all the nodes.
In summary, the DFS algorithm explores the graph in a depth-first manner by utilizing a stack to keep track of nodes. It visits nodes, examines their neighbors, and marks them as visited before proceeding.
Time and Space Complexity of DFS
The time and space complexity of DFS (Depth-First Search) depend on the size of the graph or tree being traversed.
In terms of time complexity, DFS has a worst-case scenario of O(V + E), where V represents the number of vertices (nodes) and E represents the number of edges in the graph or tree. This means that each vertex and edge is visited once, resulting in a linear time complexity.
Regarding space complexity, DFS’s space usage is determined by the maximum depth of recursion or the maximum number of nodes stored in the stack. In the worst case, such as when the graph or tree forms a straight line or a deep path, the space complexity is O(V), where V represents the number of vertices. This is because DFS stores all the nodes along the longest path in the stack. However, it’s worth noting that in practice, DFS often requires less space since it only needs to store the nodes along the current path.
It’s important to emphasize that these complexities assume an adjacency list representation of the graph. If an adjacency matrix is utilized, the space complexity for the graph representation would be O(V^2), where V is the number of vertices.
Is DFS better than BFS?
Whether DFS (Depth-First Search) or BFS (Breadth-First Search) is better depends on the specific requirements of the problem and the characteristics of the graph or tree being traversed.
DFS offers advantages in certain scenarios. It can often reach a solution more quickly compared to BFS, especially when the goal is to find a path or search for deeply nested nodes. DFS is well-suited for tasks such as finding connected components, detecting cycles, or performing searches in graphs with limited branching factors or large depths.
On the other hand, BFS has its own strengths. It guarantees that the shortest path is found when searching for a path between two nodes. It systematically explores nodes in breadth-first order, which can be advantageous in certain graph structures or when a uniform exploration is desired. BFS is particularly useful in scenarios like finding the shortest path, solving puzzles, or analyzing graphs with branching factors or shallow depths.
Ultimately, the choice between DFS and BFS depends on the problem’s requirements, the characteristics of the graph or tree, and the specific goals of the traversal. Both algorithms have their own unique advantages and applications, and selecting the appropriate one depends on understanding these factors in order to achieve the desired outcome.
Conclusion
In conclusion, DFS (Depth-First Search) proves to be a versatile algorithm for traversing graphs and trees. By exploring the structure in a depth-first manner, DFS offers valuable insights and finds applications in tasks such as finding connected components, detecting cycles, solving puzzles, and conducting graph-based searches. While DFS does not guarantee the shortest path, it excels in scenarios with limited branching and a need for deep exploration. Understanding DFS is vital for efficient problem-solving across various domains.
1 thought on “DFS (Depth First Search)”