|
| 1 | +## Typescript Algorithms and Data Structures |
| 2 | +------ |
| 3 | +Algorithms and datastructures implemented in Typescript ranging from |
| 4 | +- [sorting](./src/sorting) & [searching](./src/search) |
| 5 | +- [stacks](./src/datastructures/Stack.ts) & [queues](./src/datastructures/Queue.ts) |
| 6 | +- [binary min & max heaps](./src/datastructures/BinaryHeap.ts) |
| 7 | +- [binary trees](./src/datastructures/BinarySearchTree.ts) |
| 8 | +- [graphs, with breadth and depth first traversal methods](./src/datastructures/Graph.ts) |
| 9 | +- [Dijkstra's algorithm](./src/datastructures/Graph.ts) |
| 10 | + |
| 11 | +and quite a few [assorted recursive](./src/recursion) & iterative functions. |
| 12 | + |
| 13 | +#### The /src/ directory contains all the untranspiled Typescript source code, |
| 14 | +#### /dist/ includes es6 target transpiled Javascript to be executed. |
0 commit comments