Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/PrajaktaSathe/Java
/ addEdge
Method
addEdge
Programs/DepthFirstSearch.java:19–21 ·
view source on GitHub ↗
(int src, int dest)
Source
from the content-addressed store, hash-verified
17
18
// Add edges
19
void
addEdge(
int
src,
int
dest) {
20
adjLists[src].add(dest);
21
}
22
23
// DFS algorithm
24
void
DFS(
int
vertex) {
Callers
1
main
Method · 0.95
Calls
1
add
Method · 0.65
Tested by
no test coverage detected