-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGraph.js
46 lines (39 loc) · 793 Bytes
/
Graph.js
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
/*
Graph consists of a series of nodes. Each node contains a
value and reference to other nodes.
Node {
value,
lines: [(Node), (Node)]
}
Graph{
nodes: [
Node {...},
Node {...},
...
]
}
*/
class Graph {
constructor() {
this.nodes = [];
}
addNode(value) {
this.nodes.push({
value,
lines: []
});
}
find(value) {
this.nodes.find(node => {
return node.value === value;
});
}
addLine(startValue, endValue) {
let startNode = this.find(startValue);
let endNode = this.find(endValue);
if (!startNode || !endNode) {
throw new Error ("Both nodes must exist");
}
startNode.lines.push(endNode);
}
}