-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGraph(Colt).js
More file actions
42 lines (35 loc) · 1.06 KB
/
Graph(Colt).js
File metadata and controls
42 lines (35 loc) · 1.06 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
class Graph {
constructor() {
this.adjacencyList = {};
}
addVertex(vertex) {
if (!this.adjacencyList[vertex]) {
this.adjacencyList[vertex] = [];
}
}
addEdge(vertex1, vertex2) {
this.adjacencyList[vertex1].push(vertex2);
this.adjacencyList[vertex2].push(vertex1);
}
removeEdge(vertex1, vertex2) {
this.adjacencyList[vertex1] = this.adjacencyList[vertex1].filter((v) => v !== vertex2);
this.adjacencyList[vertex2] = this.adjacencyList[vertex2].filter((v) => v !== vertex1);
}
removeVertex(vertex) {
while (this.adjacencyList[vertex].length) {
const adjacencyVertex = this.adjacencyList[vertex].pop();
this.removeEdge(adjacencyVertex, vertex);
}
delete this.adjacencyList[vertex];
}
}
const g = new Graph();
g.addVertex('Tokyo');
g.addVertex('NewYork');
g.addVertex('LA');
g.addEdge('Tokyo', 'NewYork');
g.addEdge('Tokyo', 'LA');
console.log(g);
// g.removeEdge('Tokyo', 'NewYork');
g.removeVertex('LA');
console.log(g);