Skip to content

Instantly share code, notes, and snippets.

@ehorodyski
ehorodyski / graph.js
Created April 5, 2019 21:54
JavaScript Graph Implementation
class Graph {
constructor(numberOfVertices) {
this.numberOfVertices = numberOfVertices;
this.adjacencyList = new Map();
}
addVertex(v) {
this.adjacencyList.set(v, []);
}