From 8e822bcb14090cabff3f42a1457d6d0c07e6895b Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Mon, 2 Apr 2018 17:52:05 +0300 Subject: [PATCH] Add binary search tree. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 75a6a06e..3f7b1983 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,8 @@ 4. [Hash Table](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/hash-table) 5. [Heap](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/heap) 5. [Trie](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/trie) -6. [Binary Search Tree](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/binary-search-tree) +6. Tree + 1. [Binary Search Tree](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/tree/binary-search-tree) ## [Algorithms](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms)