Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions java/searching/DFS.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import java.util.*;

class DFS {
private final LinkedList<Integer>[] adjLists;
private final boolean[] visited;

DFS(int vertices) {
adjLists = new LinkedList[vertices];
visited = new boolean[vertices];
for (int i = 0; i < vertices; i++)
adjLists[i] = new LinkedList<>();
}

void addEdge(int src, int dest) {
adjLists[src].add(dest);
}

void dfsAlgorithm(int vertex) {
visited[vertex] = true;
System.out.print(vertex + " ");

for (int adj : adjLists[vertex]) {
if (!visited[adj])
dfsAlgorithm(adj);
}
}

public static void main(String args[]) {
DFS g = new DFS(4);

g.addEdge(0, 1);
g.addEdge(0, 2);
g.addEdge(1, 2);
g.addEdge(2, 3);

System.out.println("Following is Depth First Traversal");

g.dfsAlgorithm(2);
}
}