From 359286ec3b63e9741da9b71f6badf2a4b9c9b21a Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Fri, 6 Apr 2018 09:12:01 +0300 Subject: [PATCH] Add AVL Tree. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index bf39bb26..5613c1b8 100644 --- a/README.md +++ b/README.md @@ -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)