Skip to content

Instantly share code, notes, and snippets.

@SumitJainUTD
Created May 10, 2015 03:35
Show Gist options
  • Save SumitJainUTD/00811f15a835c8c8dfd8 to your computer and use it in GitHub Desktop.
Save SumitJainUTD/00811f15a835c8c8dfd8 to your computer and use it in GitHub Desktop.
package GraphBFS;
import java.util.LinkedList;
import java.util.Queue;
public class GraphBFS {
public static void main(String args[]) {
Graph g = new Graph(6);
g.addEdge(0, 1);
g.addEdge(0, 2);
g.addEdge(1, 2);
g.addEdge(1, 3);
g.addEdge(3, 4);
g.addEdge(2, 3);
g.addEdge(4, 0);
g.addEdge(4, 1);
g.addEdge(4, 5);
g.BFS(0);
}
}
class Node {
int dest;
Node next;
public Node(int d) {
dest = d;
next = null;
}
}
class adjList {
Node head;
}
class Graph {
int V;
adjList[] array;
public Graph(int V) {
this.V = V;
array = new adjList[V]; // linked lists = number of Nodes in Graph
for (int i = 0; i < V; i++) {
array[i] = new adjList();
array[i].head = null;
}
}
public void addEdge(int src, int dest) {
Node n = new Node(dest);
n.next = array[src].head;
array[src].head = n;
}
public void BFS(int startVertex) {
boolean[] visited = new boolean[V];
Queue<Integer> s = new LinkedList<Integer>();
s.add(startVertex);
while (s.isEmpty() == false) {
int n = s.poll();
System.out.print(" " + n);
visited[n] = true;
Node head = array[n].head;
while (head != null) {
if (visited[head.dest] == false) {
s.add(head.dest);
visited[head.dest] = true;
}
head = head.next;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment