MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / addEdge

Method addEdge

Programs/DFS.java:26–28  ·  view source on GitHub ↗
(int u,int v)

Source from the content-addressed store, hash-verified

24
25
26 public void addEdge(int u,int v) { // edge from u -> v
27 this.adj[u].add(v);
28 }
29
30
31 public void DFS(int source) {

Callers 1

mainMethod · 0.95

Calls 1

addMethod · 0.65

Tested by

no test coverage detected