Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/loiane/javascript-datastructures-algorithms
/ addVertex
Method
addVertex
src/13-graph/graph.js:14–19 ·
view source on GitHub ↗
(vertex)
Source
from the content-addressed store, hash-verified
12
}
13
14
addVertex(vertex) {
15
if
(!this.#vertices.includes(vertex)) {
16
this.#vertices.push(vertex);
17
this.#adjList.set(vertex, []);
18
}
19
}
20
21
addEdge(vertex, edge) {
22
if
(!this.#adjList.get(vertex)) {
Callers
9
addEdge
Method · 0.95
buildSampleGraph
Function · 0.95
01-airline-system.ts
File · 0.45
02-using-bfs.ts
File · 0.45
03-using-dfs.ts
File · 0.45
01-airline-system.js
File · 0.45
03-using-dfs.js
File · 0.45
02-using-bfs.js
File · 0.45
graph.test.ts
File · 0.45
Calls
2
set
Method · 0.80
push
Method · 0.45
Tested by
1
buildSampleGraph
Function · 0.76