MCPcopy Create free account
hub / github.com/Ayush7614/Daily-Coding-DS-ALGO-Practice / addEdge

Method addEdge

Gfg/Java/implement dfs.java:27–30  ·  view source on GitHub ↗
(int v, int w)

Source from the content-addressed store, hash-verified

25
26 // Function to add an edge into the graph
27 void addEdge(int v, int w)
28 {
29 adj[v].add(w); // Add w to v's list.
30 }
31
32 // A function used by DFS
33 void DFSUtil(int v, boolean visited[])

Callers 1

mainMethod · 0.95

Calls 1

addMethod · 0.80

Tested by

no test coverage detected