-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4-graph_add_edge.js
More file actions
54 lines (48 loc) · 1.11 KB
/
4-graph_add_edge.js
File metadata and controls
54 lines (48 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// class Graph{
// constructor(){
// this.adjacencyList = {};
// }
// addVertex(vertex){
// if(!this.adjacencyList[vertex]) {
// this.adjacencyList[vertex] = [];
// }
// }
// addEdge(v1,v2){
// this.adjacencyList[v1].push(v2);
// this.adjacencyList[v2].push(v1);
// }
// }
class Graph {
constructor(){
this.adjacencyList = {}
}
addVertex(vertex){
if(!this.adjacencyList[vertex]){
this.adjacencyList[vertex] = []
}
}
addEdge(v1, v2){
this.adjacencyList[v1].push(v2)
this.adjacencyList[v2].push(v1)
}
}
// class Graph{
// constructor(){
// this.adjacencyList = {}
// }
// addVertex(vertex){
// if(!this.adjacencyList[vertex]){
// this.adjacencyList[vertex] = []
// }
// }
// addEdge(v1,v2){
// this.adjacencyList[v1].push(v2)
// this.adjacencyList[v2].push(v1)
// }
// }
let g = new Graph();
g.addVertex("Dallas");
g.addVertex("Tokyo");
g.addVertex("Aspen");
g.addEdge("Dallas", "Aspen")
console.log(g)