Skip to content
Snippets Groups Projects
Commit 134e5848 authored by Lawrence Chung's avatar Lawrence Chung
Browse files

Add In.java

parent c92bd60f
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ public class GraphBuild {
adj[v] = new Fish<Integer>();
}
/*public GraphBuild(In in){
public GraphBuild(In in){
this(in.readInt());
int E = in.readInt();
for(int i = 0; i < E; i++){
......@@ -30,7 +30,7 @@ public class GraphBuild {
int w = in.readInt();
addEdge(v, w);
}
}*/
}
public int V(){
return V;
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment