-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathindex.html
38 lines (35 loc) · 2.25 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Algorithms in Javascript</title>
</head>
<body>
<script src="./source/sorts/bubble-sort/bubble-sort.js" type="module"></script>
<script src="./source/sorts/counting-sort/counting-sort.js" type="modul≠e"></script>
<script src="./source/sorts/selection-sort/selection-sort.js" type="module"></script>
<script src="./source/sorts/odd-even-sort/odd-even-sort.js" type="module"></script>
<script src="./source/sorts/quick-sort/quick-sort.js" type="module"></script>
<script src="./source/sorts/radix-sort/radix-sort.js" type="module"></script>
<script src="./source/sorts/gnome-sort/gnome-sort.js" type="module"></script>
<script src="./source/sorts/solomon-sort/solomon-sort.js" type="module"></script>
<script src="./source/sorts/bead-sort/bead-sort.js" type="module"></script>
<script src="./source/structures/stack.js" type="module"></script>
<script src="./source/structures/queue.js" type="module"></script>
<script src="./source/structures/singly-list.js" type="module"></script>
<script src="./source/trees/binary-tree.js" type="module"></script>
<script src="./source/search/linear-search/linear-search.js" type="module"></script>
<script src="./source/search/binary-search/binary-search.js" type="module"></script>
<script src="./source/hash-table/hash-table.js" type="module"></script>
<script src="./source/hash-table/hash-table.js" type="module"></script>
<script src="./source/heap/binary-heap/binary-heap.js" type="module"></script>
<script src="./source/cryptographic/affine-cipher/affine-cipher.js" type="module"></script>
<script src="./source/cryptographic/vigenere-cipher/vigenere-cipher.js" type="module"></script>
<script src="./source/other/fisher-yates/fisher-yates.js" type="module"></script>
<script src="./source/hash-table/linear-hashing/linear-hashing.js" type="module"></script>
<script src="./source/other/sieve-of-eratosthenes/sieve-of-eratosthenes.js" type="module"></script>
<script src="./source/other/fibonacchi/fibonacchi.js" type="module"></script>
</body>
</html>