Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ insertEdge
Method
insertEdge
Java/DFSTraversal.java:18–20 ·
view source on GitHub ↗
(int src, int dest)
Source
from the content-addressed store, hash-verified
16
17
/* Adding an edge to the graph */
18
void
insertEdge(
int
src,
int
dest) {
19
adj[src].add(dest);
20
}
21
22
void
DFS(
int
vertex) {
23
visited[vertex] = true; /* Mark the current node as visited */
Callers
1
main
Method · 0.95
Calls
1
add
Method · 0.45
Tested by
no test coverage detected