-
Notifications
You must be signed in to change notification settings - Fork 312
/
Graph.ts
130 lines (114 loc) · 3.03 KB
/
Graph.ts
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
class Graph<T, V> {
private _nodes: Map<
T,
{
to: Map<T, V>;
// Maintain a set of incoming nodes so that removal of nodes is more convenient.
from: Set<T>;
}
>;
/**
* Initialize a Hash-based graph.
*/
constructor() {
this._nodes = new Map();
}
/**
* Add a node to the graph.
* @param {T} value The value of the node to be added.
*/
addNode(value: T): this {
if (this._nodes.has(value)) {
return this;
}
this._nodes.set(value, {
to: new Map<T, V>(),
from: new Set<T>(),
});
return this;
}
/**
* Removes a node from the graph.
* @param {T} value The node to be removed.
*/
removeNode(value: T): this {
const incoming = this._getIncomingNodes(value);
incoming.forEach((incomingNode) => {
this.removeEdge(incomingNode, value);
});
this._nodes.delete(value);
return this;
}
/**
* Get the number of nodes in the graph.
*/
get size(): number {
return this._nodes.size;
}
/**
* Add an edge to the graph.
* @param {T} valueA The first node of the edge.
* @param {T} valueB The second node of the edge.
* @param {V} weight The weight of the edge.
*/
addEdge(valueA: T, valueB: T, weight: V): this {
this.addNode(valueA);
this.addNode(valueB);
const nodeA = this._nodes.get(valueA);
(nodeA?.to as Map<T, V>).set(valueB, weight);
(this._nodes.get(valueB)?.from as Set<T>).add(valueA);
return this;
}
/**
* Removes an edge from the graph.
* @param {T} valueA The first node of the edge.
* @param {T} valueB The second node of the edge.
*/
removeEdge(valueA: T, valueB: T): this {
const nodeA = this._nodes.get(valueA)?.to;
if (nodeA == null) {
return this;
}
nodeA.delete(valueB);
(this._nodes.get(valueB)?.from as Set<T>).delete(valueA);
return this;
}
/**
* Get weight of an edge.
* @param {T} valueA The first node of the edge.
* @param {T} valueB The second node of the edge.
*/
getEdgeWeight(valueA: T, valueB: T): V | undefined {
const nodeA = this._nodes.get(valueA)?.to;
if (nodeA == null) {
return undefined;
}
return nodeA.get(valueB);
}
/**
* Test if there is an edge from node A to B.
* @param {T} valueA The first node of the edge.
* @param {T} valueB The second node of the edge.
*/
isAdjacent(valueA: T, valueB: T): boolean {
const neighbors = this.getNeighbors(valueA);
return neighbors.includes(valueB);
}
/**
* Get the neighbors of a node.
* @param {T} value The value of the node.
*/
getNeighbors(value: T): ReadonlyArray<T> {
const neighbors = this._nodes.get(value)?.to;
return Array.from(neighbors != null ? neighbors.keys() : []);
}
/**
* Get the nodes which has an edge to the node.
* @param {T} value The value of the node.
*/
private _getIncomingNodes(value: T): ReadonlyArray<T> {
const incoming = this._nodes.get(value)?.from;
return Array.from(incoming != null ? incoming : []);
}
}
export default Graph;