Skip to content

Commit bd098a0

Browse files
authored
create README.md
1 parent 56d5c33 commit bd098a0

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

Comments
 (0)