Skip to content

Instantly share code, notes, and snippets.

View slothC0der's full-sized avatar

Alfonso Vergara slothC0der

  • Fordham
  • Miami, Florida
View GitHub Profile
@slothC0der
slothC0der / App.java
Created September 20, 2016 07:42
Simple Implementation of Breadth First Search Algorithm
package breadfirstserach;
public class App {
public static void main(String[] args) {
BFS bfs = new BFS();
Node node1 = new Node(1);
Node node2 = new Node(2);
Node node3 = new Node(3);