Add AVL Tree.

This commit is contained in:
Oleksii Trekhleb 2018-04-06 09:12:01 +03:00
parent d10293c088
commit 359286ec3b

View File

@ -14,6 +14,7 @@
7. [Trie](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/trie)
8. [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)
* [AVL Tree](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/tree/avl-tree)
## [Algorithms](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms)