From 7f12b9569a5c650623b135515d3bf59bac5f17f6 Mon Sep 17 00:00:00 2001 From: Louise Ann Apostol Date: Sat, 3 Oct 2020 10:24:43 +0800 Subject: [PATCH 1/2] update readme --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a73a809..589e396 100644 --- a/README.md +++ b/README.md @@ -72,14 +72,13 @@ This repository maintained by [Nick Scialli](https://twitter.com/nas5w) and powe - [Linked List](/src/dataStructures/linkedList.js) - TODO: Doubly Linked List -- TODO: Stack +- [Stack](/src/dataStructures/Stack.js) - [Queue](/src/dataStructures/queue.js) -- TODO: Binary Tree - [Graph](/src/dataStructures/graph.js) - [Hash Table](/src/dataStructures/hashTable.js) - TODO: Heap - TODO: Tree -- TODO: Graph +- TODO: Binary Tree - TODO: Disjoint Set - [Binary Search Tree](/src/dataStructures/binarySearchTree.js) From 7d506f70388e6259a63b07e54bc6a6a0e349e878 Mon Sep 17 00:00:00 2001 From: Louise Ann Apostol Date: Sat, 3 Oct 2020 10:25:39 +0800 Subject: [PATCH 2/2] update patterns section --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 589e396..a3f4c6c 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ This repository maintained by [Nick Scialli](https://twitter.com/nas5w) and powe - [Proxy](/src/patterns/proxy.js) - [Facade](/src/patterns/facade.js) - TODO: Mixin -- TODO: Prototype +- [Prototype](/src/patterns/prototype.js) - [Strategy](/src/patterns/behavioral/strategy.js) ## Techniques