-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshortestPath.js
242 lines (204 loc) · 8.01 KB
/
shortestPath.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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
function setup() {
createCanvas(1000, 600); // Width = 1000, Height = 600
background("#1e1e1e");
}
function draw() {
noLoop();
for (let rows = 0; rows < vertices.length; rows++) {
const n = vertices[rows][0];
const x = vertices[rows][1];
const y = vertices[rows][2];
drawNode(n, x, y);
}
// Print Adjacency Matrix
console.log("Weighted Adjacency Matrix: ")
console.table(adjacencyMatrix)
}
let interval = 0;
const vertices = [
["N0", 500, 300], ["N1", 400, 200], ["N2", 100, 150],
["N3", 230, 300], ["N4", 50, 400], ["N5", 400, 400],
["N6", 600, 100], ["N7", 300, 70], ["N8", 170, 520],
["N9", 350, 550], ["N10", 540, 530], ["N11", 900, 70],
["N12", 800, 170], ["N13", 670, 270], ["N14", 670, 430],
["N15", 920, 500], ["N16", 770, 530], ["N17", 880, 330],
]
let adjacencyMatrix = [
[0, 141.42, 0, 0, 0, 141.42, 0, 0, 0, 0, 0, 0, 0, 172.63, 0, 0, 0, 0,],
[141.42, 0, 0, 197.23, 0, 0, 223.61, 164.01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,],
[0, 0, 0, 0, 254.95, 0, 0, 215.41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,],
[0, 197.23, 0, 0, 205.91, 197.23, 0, 0, 228.04, 0, 0, 0, 0, 0, 0, 0, 0, 0,],
[0, 0, 254.95, 205.91, 0, 0, 0, 0, 169.71, 0, 0, 0, 0, 0, 0, 0, 0, 0,],
[141.42, 0, 0, 197.23, 0, 0, 0, 0, 0, 158.11, 191.05, 0, 0, 0, 271.66, 0, 0, 0,],
[0, 223.61, 0, 0, 0, 0, 0, 301.5, 0, 0, 0, 301.5, 211.9, 0, 0, 0, 0, 0,],
[0, 164.01, 215.41, 0, 0, 0, 301.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,],
[0, 0, 0, 228.04, 169.71, 0, 0, 0, 0, 182.48, 0, 0, 0, 0, 0, 0, 0, 0,],
[0, 0, 0, 0, 0, 158.11, 0, 0, 182.48, 0, 191.05, 0, 0, 0, 0, 0, 0, 0,],
[0, 0, 0, 0, 0, 191.05, 0, 0, 0, 191.05, 0, 0, 0, 0, 0, 0, 230, 0,],
[0, 0, 0, 0, 0, 0, 301.5, 0, 0, 0, 0, 0, 141.42, 0, 0, 0, 0, 0,],
[0, 0, 0, 0, 0, 0, 211.9, 0, 0, 0, 0, 141.42, 0, 164.01, 0, 0, 0, 178.89,],
[172.63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164.01, 0, 160, 0, 0, 218.4,],
[0, 0, 0, 0, 0, 271.66, 0, 0, 0, 0, 0, 0, 0, 160, 0, 0, 141.42, 232.59,],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 152.97, 174.64,],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230, 0, 0, 0, 141.42, 152.97, 0, 0,],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178.89, 218.4, 232.59, 174.64, 0, 0,],
]
let isGraphAnimated = false;
// Animate adjacency matrix
document.querySelector('#adjacencyMatrix').addEventListener('click', () => {
animateGraph(true);
})
// Find shortestPath using dijsktra's
document.querySelector("#findShortestPath").addEventListener('click', () => {
console.log(isGraphAnimated);
if (!isGraphAnimated) {
window.alert("Please wait for the animation to finish or graph the weighted adjacency matrix first");
return;
}
const start = document.querySelector("#start").value;
const end = document.querySelector("#end").value;
dijsktra(vertices, adjacencyMatrix, parseInt(start), parseInt(end));
});
// Show the shortest path from a specific node to the rest of all nodes
document.querySelector("#generateShortPathTree").addEventListener('click', () => {
console.log(isGraphAnimated)
if (!isGraphAnimated) {
window.alert("Please wait for the animation to finish or graph the weighted adjacency matrix first");
return;
}
const start = document.querySelector("#start").value;
dijsktra(vertices, adjacencyMatrix, parseInt(start), -1);
})
// Dijktra's Algorithm function
function dijsktra(vertices, graph, start, end) {
const totalNodes = vertices.length;
let shortestDistance = new Array(totalNodes); // Used to keep track on shortest between two specific nodes
let isVisited = new Array(totalNodes); // Used to keep track on nodes that is already visited
let backTrackedNodes = new Array(adjacencyMatrix.length); // Used to backtrack the node/s from the given start to end.
animateGraph(false); // Overwrite the red edges to white with no animation.
for (let i = 0; i < totalNodes; i++) {
shortestDistance[i] = Number.MAX_VALUE;
isVisited[i] = false;
}
shortestDistance[start] = 0;
backTrackedNodes[start] = -1;
for (let count = 0; count < totalNodes - 1; count++) {
let min = Number.MAX_VALUE;
let min_index = -1;
for (let v = 0; v < totalNodes; v++) {
if (isVisited[v] == false && shortestDistance[v] <= min) {
min = shortestDistance[v];
min_index = v;
}
}
isVisited[min_index] = true;
for (let v = 0; v < totalNodes; v++) {
if (!isVisited[v] && graph[min_index][v] != 0 &&
shortestDistance[min_index] != Number.MAX_VALUE &&
shortestDistance[min_index] + graph[min_index][v] < shortestDistance[v]) {
shortestDistance[v] = shortestDistance[min_index] + graph[min_index][v]; // Calculate the shortest shortestDistanceance
backTrackedNodes[v] = min_index; // Backtracking nodes
}
}
}
// Start tracking paths and animate it
isGraphAnimated = false;
interval = 0;
for (let vertex = 0; vertex < totalNodes; vertex++) {
let trackNode = (end != -1) ? end : vertex;
let trackedNodes = [];
if (vertex == start)
continue;
while (true) {
trackedNodes.push(trackNode);
trackNode = backTrackedNodes[trackNode];
if (trackNode == -1)
break;
}
animateDijsktra(trackedNodes, 'red');
if (end != -1)
break;
}
}
function animateDijsktra(backTrackArr, color) {
const animationSpeed = .30;
for (let vertex = backTrackArr.length - 1; vertex >= 1; vertex--) { // Reverse the nodes and animate from start to end
let trace = vertex;
let vertex1 = backTrackArr[trace];
let vertex2 = backTrackArr[--trace];
// Node 1 details
const n1 = vertices[vertex1][0];
const x1 = vertices[vertex1][1];
const y1 = vertices[vertex1][2];
// Node 2 details
const n2 = vertices[vertex2][0];
const x2 = vertices[vertex2][1];
const y2 = vertices[vertex2][2];
// Animate the line
drawLine(x1, y1, x2, y2, color, interval+=2, n1, n2, animationSpeed);
if (vertex == 1)
setTimeout(() => isGraphAnimated = true, ++interval * 1000);
}
}
function animateGraph(performAnimation) {
let interval = 0;
const animationSpeed = (document.querySelector("#speed").value) * .10;
// Keep track of the visited nodes
let isVisited = new Array(adjacencyMatrix.length);
for (let row = 0; row < adjacencyMatrix.length; row++) {
isVisited[row] = new Array(adjacencyMatrix.length);
for (let col = 0; col < adjacencyMatrix.length; col++)
isVisited[row][col] = false;
}
for (let rows = 0; rows < adjacencyMatrix.length; rows++) {
for (let cols = 0; cols < adjacencyMatrix.length; cols++) {
if (adjacencyMatrix[rows][cols] != 0 && isVisited[rows][cols] == false) {
if (performAnimation == true)
interval+=2, speed = 0.2;
// Node 1 details
let n1 = vertices[rows][0];
let x1 = vertices[rows][1];
let y1 = vertices[rows][2];
// Node 2 details
let n2 = vertices[cols][0];
let x2 = vertices[cols][1];
let y2 = vertices[cols][2];
// Function that draws the line
drawLine(x1, y1, x2, y2, 'white', interval, n1, n2, animationSpeed)
// If the node is already been visited, then don't animate it.
adjacencyMatrix[cols][rows] = 1;
isVisited[cols][rows] = true;
}
if (rows == adjacencyMatrix.length - 1 && cols == adjacencyMatrix.length - 1)
setTimeout(() => isGraphAnimated = true, interval * 1000);
}
}
}
// Draw Node function
function drawNode(n, x, y) {
stroke('black')
circle(x, y, 50)
textAlign(CENTER, CENTER)
textStyle(BOLD)
textSize(15)
text(n, x, y)
}
// Draw Node function
function drawLine(x1, y1, x2, y2, color, interval, n1, n2, speed) {
setTimeout(() => {
let angle = 0;
isGraphAnimated = false;
const animate = setInterval(() => {
let tempX = map(angle, 0, 100, x1, x2, 1);
let tempY = map(angle, 0, 100, y1, y2, 1);
angle += speed;
if (tempX == x2 && tempY == y2)
clearInterval(animate);
stroke(color);
strokeWeight(1);
line(x1, y1, tempX, tempY);
drawNode(n1, x1, y1)
drawNode(n2, x2, y2)
}, speed);
}, 1000 * interval)
}