Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding DFS in java #583

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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);
}
}