Add binary search tree.

This commit is contained in:
Oleksii Trekhleb 2018-04-02 17:52:05 +03:00
parent d6be33842c
commit 8e822bcb14

View File

@ -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)