Created
July 24, 2018 23:51
-
-
Save ziyoshams/5d340f3aeb1113d48dc56a0ff62eba0a to your computer and use it in GitHub Desktop.
Graph consructor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Graph { | |
constructor() { | |
this.AdjList = new Map(); | |
} | |
// BASIC METHODS | |
// addVertex(vertex) {} | |
// addEdge(vertex, node) {} | |
// print() {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment