-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdijkstra.html
More file actions
22 lines (19 loc) · 889 Bytes
/
dijkstra.html
File metadata and controls
22 lines (19 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html><html lang="en">
<head>
<title>Dijkstra's Algorithm</title>
<link rel = "shortcut icon" type = "image/png" href="img/favicon.png">
<script src="https://cdn.jsdelivr.net/npm/p5@1.1.9/lib/p5.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css2?family=Oswald" rel="stylesheet">
</head>
<body>
<script src="js/algorithms/preload.js"></script>
<script src="js/algorithms/resize.js"></script>
<script src="js/algorithms/dijkstra/sketch.js"></script>
<script src="js/graph_elements/Node.js"></script>
<script src="js/graph_elements/Graph.js"></script>
<script src="js/Options.js"></script>
<script src="js/data_structures/PriorityQueue.js"></script>
<script src="js/algorithms/dijkstra/Dijkstra.js"></script>
</body></html>