MCPcopy Create free account
hub / github.com/TheAlgorithms/JavaScript /

Class

Graphs/NodeNeighbors.js:3–3  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1// https://en.wikipedia.org/wiki/Neighbourhood_(graph_theory)
2
3class Graph {
4 // Generic graph: the algorithm works regardless of direction or weight
5 constructor() {
6 this.edges = []

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected