|
1 | 1 |
|
2 | 2 | ## Algorithms
|
3 |
| - * dynamic programming |
4 |
| - * [fibonacci](https://github.com/TheAlgorithms/Javascript/blob/master/Algorithms/dynamic_programming/fibonacci.js) |
| 3 | + * Dynamic-Programming |
| 4 | + * [Fibonacci](https://github.com/TheAlgorithms/Javascript/blob/master/Algorithms/Dynamic-Programming/Fibonacci.js) |
5 | 5 | * [EucledianGCD](https://github.com/TheAlgorithms/Javascript/blob/master/Algorithms/EucledianGCD.js)
|
6 | 6 | * [KadaneAlgo](https://github.com/TheAlgorithms/Javascript/blob/master/Algorithms/KadaneAlgo.js)
|
7 | 7 | * [sieveOfEratosthenes](https://github.com/TheAlgorithms/Javascript/blob/master/Algorithms/sieveOfEratosthenes.js)
|
|
21 | 21 | * [Graph](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Graph/Graph.js)
|
22 | 22 | * Heap
|
23 | 23 | * [MinPriorityQueue](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Heap/MinPriorityQueue.js)
|
24 |
| - * Linked List |
25 |
| - * [DoublyLinkedList](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Linked%20List/DoublyLinkedList.js) |
26 |
| - * [singlylinklist](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Linked%20List/singlylinklist.js) |
| 24 | + * Linked-List |
| 25 | + * [DoublyLinkedList](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Linked-List/DoublyLinkedList.js) |
| 26 | + * [SinglyLinkList](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Linked-List/SinglyLinkList.js) |
27 | 27 | * Queue
|
28 | 28 | * [Queue](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Queue/Queue.js)
|
29 | 29 | * [QueueUsing2Stacks](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Queue/QueueUsing2Stacks.js)
|
30 | 30 | * Stack
|
31 | 31 | * [Stack](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Stack/Stack.js)
|
32 | 32 | * Tree
|
33 |
| - * [Binary Search Tree](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Tree/Binary%20Search%20Tree.js) |
| 33 | + * [BinarySearchTree](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Tree/BinarySearchTree.js) |
34 | 34 |
|
35 | 35 | ## Hashes
|
36 | 36 | * [SHA1](https://github.com/TheAlgorithms/Javascript/blob/master/Hashes/SHA1.js)
|
|
55 | 55 | * [PascalTriangle](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/PascalTriangle.js)
|
56 | 56 |
|
57 | 57 | ## Search
|
58 |
| - * [binarySearch](https://github.com/TheAlgorithms/Javascript/blob/master/Search/binarySearch.js) |
59 |
| - * [jumpSearch](https://github.com/TheAlgorithms/Javascript/blob/master/Search/jumpSearch.js) |
60 |
| - * [linearSearch](https://github.com/TheAlgorithms/Javascript/blob/master/Search/linearSearch.js) |
| 58 | + * [BinarySearch](https://github.com/TheAlgorithms/Javascript/blob/master/Search/BinarySearch.js) |
| 59 | + * [JumpSearch](https://github.com/TheAlgorithms/Javascript/blob/master/Search/JumpSearch.js) |
| 60 | + * [LinearSearch](https://github.com/TheAlgorithms/Javascript/blob/master/Search/LinearSearch.js) |
61 | 61 |
|
62 | 62 | ## Sorts
|
63 |
| - * [bogoSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/bogoSort.js) |
64 |
| - * [bubblesort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/bubblesort.js) |
65 |
| - * [bucketSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/bucketSort.js) |
66 |
| - * [cocktailShakerSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/cocktailShakerSort.js) |
67 |
| - * [combSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/combSort.js) |
68 |
| - * [countingSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/countingSort.js) |
69 |
| - * [cycleSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/cycleSort.js) |
70 |
| - * [flashSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/flashSort.js) |
71 |
| - * [gnomeSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/gnomeSort.js) |
72 |
| - * [heapSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/heapSort.js) |
73 |
| - * [insertionSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/insertionSort.js) |
74 |
| - * [mergeSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/mergeSort.js) |
75 |
| - * [quickSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/quickSort.js) |
76 |
| - * [radixSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/radixSort.js) |
77 |
| - * [selectionSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/selectionSort.js) |
78 |
| - * [shellSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/shellSort.js) |
| 63 | + * [BogoSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/BogoSort.js) |
| 64 | + * [BubbleSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/BubbleSort.js) |
| 65 | + * [BucketSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/BucketSort.js) |
| 66 | + * [CocktailShakerSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/CocktailShakerSort.js) |
| 67 | + * [CombSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/CombSort.js) |
| 68 | + * [CountingSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/CountingSort.js) |
| 69 | + * [CycleSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/CycleSort.js) |
| 70 | + * [FlashSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/FlashSort.js) |
| 71 | + * [GnomeSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/GnomeSort.js) |
| 72 | + * [HeapSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/HeapSort.js) |
| 73 | + * [InsertionSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/InsertionSort.js) |
| 74 | + * [MergeSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/MergeSort.js) |
| 75 | + * [QuickSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/QuickSort.js) |
| 76 | + * [RadixSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/RadixSort.js) |
| 77 | + * [SelectionSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/SelectionSort.js) |
| 78 | + * [ShellSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/ShellSort.js) |
79 | 79 | * [TopologicalSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/TopologicalSort.js)
|
80 |
| - * [wiggleSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/wiggleSort.js) |
| 80 | + * [WiggleSort](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/WiggleSort.js) |
0 commit comments