|
1 | 1 |
|
2 | | -## Algorithms |
3 | | - * [EucledianGCD](https://github.com/TheAlgorithms/Javascript/blob/master/Algorithms/EucledianGCD.js) |
4 | | - * [KadaneAlgo](https://github.com/TheAlgorithms/Javascript/blob/master/Algorithms/KadaneAlgo.js) |
5 | | - * [SieveOfEratosthenes](https://github.com/TheAlgorithms/Javascript/blob/master/Algorithms/SieveOfEratosthenes.js) |
6 | | - |
7 | 2 | ## Ciphers |
8 | 3 | * [CaesarsCipher](https://github.com/TheAlgorithms/Javascript/blob/master/Ciphers/CaesarsCipher.js) |
9 | 4 | * [KeyFinder](https://github.com/TheAlgorithms/Javascript/blob/master/Ciphers/KeyFinder.js) |
|
15 | 10 | * [DecimalToOctal](https://github.com/TheAlgorithms/Javascript/blob/master/Conversions/DecimalToOctal.js) |
16 | 11 |
|
17 | 12 | ## Data-Structures |
| 13 | + * Array |
| 14 | + * [QuickSelect](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Array/QuickSelect.js) |
18 | 15 | * Graph |
19 | 16 | * [Graph](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Graph/Graph.js) |
| 17 | + * [Graph2](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Graph/Graph2.js) |
20 | 18 | * Heap |
21 | 19 | * [MaxHeap](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Heap/MaxHeap.js) |
22 | 20 | * [MinPriorityQueue](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Heap/MinPriorityQueue.js) |
|
31 | 29 | * Tree |
32 | 30 | * [BinarySearchTree](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Tree/BinarySearchTree.js) |
33 | 31 |
|
| 32 | +## Dynamic-Programming |
| 33 | + * [KadaneAlgo](https://github.com/TheAlgorithms/Javascript/blob/master/Dynamic-Programming/KadaneAlgo.js) |
| 34 | + * [SieveOfEratosthenes](https://github.com/TheAlgorithms/Javascript/blob/master/Dynamic-Programming/SieveOfEratosthenes.js) |
| 35 | + |
34 | 36 | ## Hashes |
35 | 37 | * [SHA1](https://github.com/TheAlgorithms/Javascript/blob/master/Hashes/SHA1.js) |
36 | 38 | * [SHA256](https://github.com/TheAlgorithms/Javascript/blob/master/Hashes/SHA256.js) |
37 | 39 |
|
38 | | -## Linear-Algebra-Javascript |
| 40 | +## Linear-Algebra |
39 | 41 | * src |
40 | | - * [la_lib](https://github.com/TheAlgorithms/Javascript/blob/master/Linear-Algebra-Javascript/src/la_lib.js) |
| 42 | + * [la_lib](https://github.com/TheAlgorithms/Javascript/blob/master/Linear-Algebra/src/la_lib.js) |
41 | 43 | * test |
42 | | - * [test](https://github.com/TheAlgorithms/Javascript/blob/master/Linear-Algebra-Javascript/test/test.js) |
| 44 | + * [test](https://github.com/TheAlgorithms/Javascript/blob/master/Linear-Algebra/test/test.js) |
43 | 45 |
|
44 | 46 | ## Maths |
45 | 47 | * [Abs](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/Abs.js) |
|
49 | 51 | * [Fibonacci](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/Fibonacci.js) |
50 | 52 | * [FindHcf](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/FindHcf.js) |
51 | 53 | * [FindLcm](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/FindLcm.js) |
52 | | - * [Graph](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/Graph.js) |
53 | 54 | * [Palindrome](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/Palindrome.js) |
54 | 55 | * [PascalTriangle](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/PascalTriangle.js) |
55 | 56 |
|
56 | | -## [QuickSelect](https://github.com/TheAlgorithms/Javascript/blob/master//QuickSelect.js) |
| 57 | +## Recursive |
| 58 | + * [EucledianGCD](https://github.com/TheAlgorithms/Javascript/blob/master/Recursive/EucledianGCD.js) |
57 | 59 |
|
58 | 60 | ## Search |
59 | 61 | * [BinarySearch](https://github.com/TheAlgorithms/Javascript/blob/master/Search/BinarySearch.js) |
|
70 | 72 | * [CycleSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/CycleSort.js) |
71 | 73 | * [FlashSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/FlashSort.js) |
72 | 74 | * [GnomeSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/GnomeSort.js) |
73 | | - * [Heapsort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/Heapsort.js) |
74 | 75 | * [HeapSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/HeapSort.js) |
| 76 | + * [Heapsort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/Heapsort.js) |
75 | 77 | * [InsertionSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/InsertionSort.js) |
76 | 78 | * [MergeSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/MergeSort.js) |
77 | 79 | * [QuickSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/QuickSort.js) |
|
0 commit comments