From 33816b991924e90bf4deb98d05bd9228089572c3 Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Mon, 2 Apr 2018 17:54:24 +0300 Subject: [PATCH] Add binary search tree. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f05a6e1..2ff0a891 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ 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. Tree +6. [Tree](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/tree) * [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)