Depth First Search (DFS): A Comprehensive Guide
Depth First Search (DFS) is a graph traversal algorithm that explores as far as possible along each branch before backtracking. It's widely used for topological sorting, finding connected components, solving puzzles with only one solution (such as mazes), and detecting cycles in graphs.
How DFS Works
- Start at a chosen node (often called the root node for trees).
- Explore as far as possible along each branch before backtracking.
- Typically implemented using a stack (or recursion, which uses the call stack).
- Each node is processed only once.
Implementation in Java
Here's a basic implementation of DFS for a graph in Java:
import java.util.*;
class Graph {
private int V;
private LinkedList<Integer>[] adj;
Graph(int v) {
V = v;
adj = new LinkedList[v];
for (int i = 0; i < v; ++i)
adj[i] = new LinkedList();
}
void addEdge(int v, int w) {
adj[v].add(w);
}
void DFSUtil(int v, boolean visited[]) {
visited[v] = true;
System.out.print(v + " ");
for (int n : adj[v]) {
if (!visited[n])
DFSUtil(n, visited);
}
}
void DFS(int v) {
boolean visited[] = new boolean[V];
DFSUtil(v, visited);
}
public static void main(String args[]) {
Graph g = new Graph(4);
g.addEdge(0, 1);
g.addEdge(0, 2);
g.addEdge(1, 2);
g.addEdge(2, 0);
g.addEdge(2, 3);
g.addEdge(3, 3);
System.out.println("Depth First Traversal (starting from vertex 2)");
g.DFS(2);
}
}
Implementation in C++
Here's the same implementation in C++:
#include <iostream>
#include <list>
#include <vector>
using namespace std;
class Graph {
int V;
list<int> *adj;
void DFSUtil(int v, vector<bool>& visited);
public:
Graph(int V);
void addEdge(int v, int w);
void DFS(int v);
};
Graph::Graph(int V) {
this->V = V;
adj = new list<int>[V];
}
void Graph::addEdge(int v, int w) {
adj[v].push_back(w);
}
void Graph::DFSUtil(int v, vector<bool>& visited) {
visited[v] = true;
cout << v << " ";
for (auto i = adj[v].begin(); i != adj[v].end(); ++i)
if (!visited[*i])
DFSUtil(*i, visited);
}
void Graph::DFS(int v) {
vector<bool> visited(V, false);
DFSUtil(v, visited);
}
int main() {
Graph g(4);
g.addEdge(0, 1);
g.addEdge(0, 2);
g.addEdge(1, 2);
g.addEdge(2, 0);
g.addEdge(2, 3);
g.addEdge(3, 3);
cout << "Depth First Traversal (starting from vertex 2) \n";
g.DFS(2);
return 0;
}
Popular Interview Problems
Let's look at some popular interview problems related to DFS and their solutions in both Java and C++.
1. Detect Cycle in a Directed Graph
Problem: Given a directed graph, check whether the graph contains a cycle or not.
Java Solution:
import java.util.*;
class Graph {
private int V;
private List<List<Integer>> adj;
Graph(int v) {
V = v;
adj = new ArrayList<>(v);
for (int i = 0; i < v; i++)
adj.add(new ArrayList<>());
}
void addEdge(int source, int dest) {
adj.get(source).add(dest);
}
boolean isCyclicUtil(int i, boolean[] visited, boolean[] recStack) {
if (recStack[i])
return true;
if (visited[i])
return false;
visited[i] = true;
recStack[i] = true;
for (Integer c : adj.get(i))
if (isCyclicUtil(c, visited, recStack))
return true;
recStack[i] = false;
return false;
}
boolean isCyclic() {
boolean[] visited = new boolean[V];
boolean[] recStack = new boolean[V];
for (int i = 0; i < V; i++)
if (isCyclicUtil(i, visited, recStack))
return true;
return false;
}
public static void main(String[] args) {
Graph graph = new Graph(4);
graph.addEdge(0, 1);
graph.addEdge(0, 2);
graph.addEdge(1, 2);
graph.addEdge(2, 0);
graph.addEdge(2, 3);
graph.addEdge(3, 3);
if(graph.isCyclic())
System.out.println("Graph contains cycle");
else
System.out.println("Graph doesn't contain cycle");
}
}
C++ Solution:
#include <iostream>
#include <vector>
using namespace std;
class Graph {
int V;
vector<vector<int>> adj;
bool isCyclicUtil(int v, vector<bool>& visited, vector<bool>& recStack) {
if(visited[v] == false) {
visited[v] = true;
recStack[v] = true;
for(auto i = adj[v].begin(); i != adj[v].end(); ++i) {
if ( !visited[*i] && isCyclicUtil(*i, visited, recStack) )
return true;
else if (recStack[*i])
return true;
}
}
recStack[v] = false;
return false;
}
public:
Graph(int V) {
this->V = V;
adj.resize(V);
}
void addEdge(int v, int w) {
adj[v].push_back(w);
}
bool isCyclic() {
vector<bool> visited(V, false);
vector<bool> recStack(V, false);
for(int i = 0; i < V; i++)
if (isCyclicUtil(i, visited, recStack))
return true;
return false;
}
};
int main() {
Graph g(4);
g.addEdge(0, 1);
g.addEdge(0, 2);
g.addEdge(1, 2);
g.addEdge(2, 0);
g.addEdge(2, 3);
g.addEdge(3, 3);
if(g.isCyclic())
cout << "Graph contains cycle";
else
cout << "Graph doesn't contain cycle";
return 0;
}
Explanation: This problem uses DFS to detect cycles in a directed graph. We use two arrays: visited
to keep track of visited vertices and recStack
to keep track of vertices currently in the recursion stack. If we encounter a vertex that's already in the recursion stack, we've found a cycle.
2. Number of Islands
Problem: Given a 2d grid map of '1's (land) and '0's (water), count the number of islands. An island is surrounded by water and is formed by connecting adjacent lands horizontally or vertically.
Java Solution:
class Solution {
public int numIslands(char[][] grid) {
if (grid == null || grid.length == 0) {
return 0;
}
int numIslands = 0;
for (int i = 0; i < grid.length; i++) {
for (int j = 0; j < grid[i].length; j++) {
if (grid[i][j] == '1') {
numIslands += dfs(grid, i, j);
}
}
}
return numIslands;
}
private int dfs(char[][] grid, int i, int j) {
if (i < 0 || i >= grid.length || j < 0 || j >= grid[i].length || grid[i][j] == '0') {
return 0;
}
grid[i][j] = '0';
dfs(grid, i + 1, j);
dfs(grid, i - 1, j);
dfs(grid, i, j + 1);
dfs(grid, i, j - 1);
return 1;
}
}
C++ Solution:
class Solution {
public:
int numIslands(vector<vector<char>>& grid) {
if (grid.empty() || grid[0].empty()) {
return 0;
}
int numIslands = 0;
for (int i = 0; i < grid.size(); i++) {
for (int j = 0; j < grid[i].size(); j++) {
if (grid[i][j] == '1') {
numIslands += dfs(grid, i, j);
}
}
}
return numIslands;
}
private:
int dfs(vector<vector<char>>& grid, int i, int j) {
if (i < 0 || i >= grid.size() || j < 0 || j >= grid[i].size() || grid[i][j] == '0') {
return 0;
}
grid[i][j] = '0';
dfs(grid, i + 1, j);
dfs(grid, i - 1, j);
dfs(grid, i, j + 1);
dfs(grid, i, j - 1);
return 1;
}
};
Explanation: This problem uses DFS to explore each island. When we encounter a '1', we use DFS to explore all connected '1's and mark them as visited (by changing them to '0'). Each time we start a new DFS, we've found a new island.
These problems demonstrate how DFS can be applied to solve complex problems efficiently, especially when dealing with graph traversal, cycle detection, and connected component problems. Understanding these applications is crucial for mastering DFS and performing well in coding interviews.