|
| 1 | +# Algorithms and Data Structures |
| 2 | + |
| 3 | +WIP |
| 4 | + |
| 5 | +Beautifully crafted and well documented examples of Algorithms and Data Structures. |
| 6 | + |
| 7 | +## Algorithms |
| 8 | + |
| 9 | +[Circular Array](./algorithms/circular-array/index.ts) |
| 10 | + |
| 11 | +[Damerau Levenshtein Distance](./algorithms/damerau-levenshtein-distance/index.ts) |
| 12 | + |
| 13 | +[Euler's Totient](./algorithms/eulers-totient/index.ts) |
| 14 | + |
| 15 | +[Fibonacci Numbers](./algorithms/fibonacci-numbers/index.ts) |
| 16 | + |
| 17 | +[Fisher–Yates Shuffle](./algorithms/fisher-yates-shuffle/index.ts) |
| 18 | + |
| 19 | +[Levenshtein Distance](./algorithms/levenshtein-distance/index.ts) |
| 20 | + |
| 21 | +[Linear Congruential Generator](./algorithms/linear-congruential-generator/index.ts) |
| 22 | + |
| 23 | +[Lucas Numbers](./algorithms/lucas-numbers/index.ts) |
| 24 | + |
| 25 | +[Mersenne Twister](./algorithms/mersenne-twister/index.ts) |
| 26 | + |
| 27 | +[Phi](./algorithms/phi/index.ts) |
| 28 | + |
| 29 | +[Sieve of Eratosthenes](./algorithms/sieve-of-eratosthenes/index.ts) |
| 30 | + |
| 31 | +### Search Algorithms |
| 32 | + |
| 33 | +[Binary Search](./algorithms/binary-search/index.ts) |
| 34 | + |
| 35 | +[Exponential Search](./algorithms/exponential-search/index.ts) |
| 36 | + |
| 37 | +[Interpolation Search](./algorithms/interpolation-search/index.ts) |
| 38 | + |
| 39 | +[Linear Search](./algorithms/linear-search/index.ts) |
| 40 | + |
| 41 | +[Ternary Search](./algorithms/ternary-search/index.ts) |
| 42 | + |
| 43 | +### Hash Algorithms |
| 44 | + |
| 45 | +[djb2](./algorithms/hash/djb2/index.ts) |
| 46 | + |
| 47 | +[sdbm](./algorithms/hash/sdbm/index.ts) |
| 48 | + |
| 49 | +[loselose](./algorithms/hash/loselose/index.ts) |
| 50 | + |
| 51 | +### Sort Algorithms |
| 52 | + |
| 53 | +[Bubble Sort](./algorithms/sorting/bubble-sort/index.ts) |
| 54 | + |
| 55 | +[Comb Sort](./algorithms/sorting/comb-sort/index.ts) |
| 56 | + |
| 57 | +[Heapsort](./algorithms/sorting/heapsort/index.ts) |
| 58 | + |
| 59 | +[Insertion Sort](./algorithms/sorting/insertion-sort/index.ts) |
| 60 | + |
| 61 | +[Merge Sort](./algorithms/sorting/merge-sort/index.ts) |
| 62 | + |
| 63 | +[Quicksort](./algorithms/sorting/quicksort/index.ts) |
| 64 | + |
| 65 | +[Selection Sort](./algorithms/sorting/selection-sort/index.ts) |
| 66 | + |
| 67 | +[Shellsort](./algorithms/sorting/shellsort/index.ts) |
| 68 | + |
| 69 | +## Data Structures |
| 70 | + |
| 71 | +[AVL Tree](./data-structures/avl-tree/index.ts) |
| 72 | + |
| 73 | +[Binary Search Tree](./data-structures/binary-search-tree/index.ts) |
| 74 | + |
| 75 | +[Binary Tree](./data-structures/binary-tree/index.ts) |
| 76 | + |
| 77 | +[Circular Doubly Linked List](./data-structures/circular-doubly-linked-list/index.ts) |
| 78 | + |
| 79 | +[Circular Linked List](./data-structures/circular-linked-list/index.ts) |
| 80 | + |
| 81 | +[Deque](./data-structures/deque/index.ts) |
| 82 | + |
| 83 | +[Dictionary](./data-structures/dictionary/index.ts) |
| 84 | + |
| 85 | +[Doubly Linked List](./data-structures/doubly-linked-list/index.ts) |
| 86 | + |
| 87 | +[Graph](./data-structures/graph/index.ts) |
| 88 | + |
| 89 | +[Hash Table](./data-structures/hash-table/index.ts) |
| 90 | + |
| 91 | +[Linked List](./data-structures/linked-list/index.ts) |
| 92 | + |
| 93 | +[Queue](./data-structures/queue/index.ts) |
| 94 | + |
| 95 | +[Red Black Tree](./data-structures/red-black-tree/index.ts) |
| 96 | + |
| 97 | +[Skip List](./data-structures/skip-list/index.ts) |
| 98 | + |
| 99 | +[Stack](./data-structures/stack/index.ts) |
| 100 | + |
| 101 | +[Tree](./data-structures/tree/index.ts) |
| 102 | + |
| 103 | +[Trie](./data-structures/trie/index.ts) |
| 104 | + |
| 105 | +[Unrolled Linked List](./data-structures/unrolled-linked-list/index.ts) |
| 106 | + |
| 107 | +## Licence |
| 108 | + |
| 109 | +MIT |
0 commit comments