@@ -335,15 +335,15 @@ Learn all the different kinds of trees and its properties.
335335 nodes value keep this order ` left < parent < right ` .
336336 [ Code] ( https://github.com/amejiarosario/algorithms.js/blob/master/src/data-structures/trees/binary-search-tree.js )
337337 |
338- [ BST Time complexity] ( https://github.com/amejiarosario/dsa.js/blob/master/book/chapters/tree-- binary-search-tree.adoc#tree-complexity )
338+ [ BST Time complexity] ( https://github.com/amejiarosario/dsa.js/blob/master/book/chapters/tree-binary-search-tree.adoc#tree-complexity )
339339 <!-- [Post](https://adrianmejia.com/blog/2018/06/11/data-structures-for-beginners-trees-binary-search-tree-tutorial/#Binary-Search-Tree-BST) -->
340340
341341 - ** AVL Trees** : Self-balanced BST to maximize look up time.
342342 [ Code] ( https://github.com/amejiarosario/algorithms.js/blob/master/src/data-structures/trees/avl-tree.js )
343343 |
344- [ AVL Tree docs] ( https://github.com/amejiarosario/dsa.js/blob/master/book/chapters/tree-- avl.adoc )
344+ [ AVL Tree docs] ( https://github.com/amejiarosario/dsa.js/blob/master/book/chapters/tree-avl.adoc )
345345 |
346- [ Self-balancing & tree rotations docs] ( https://github.com/amejiarosario/dsa.js/blob/master/book/chapters/tree-- self-balancing-rotations.adoc )
346+ [ Self-balancing & tree rotations docs] ( https://github.com/amejiarosario/dsa.js/blob/master/book/chapters/tree-self-balancing-rotations.adoc )
347347 <!-- [Post](https://adrianmejia.com/blog/2018/07/16/self-balanced-binary-search-trees-with-avl-tree-data-structure-for-beginners/) -->
348348
349349 - ** Red-Black Trees** : Self-balanced BST more loose than AVL to
@@ -385,9 +385,9 @@ From unbalanced BST to balanced BST
385385
386386### ⚒ [ Algorithms Techniques] ( https://github.com/amejiarosario/dsa.js-data-structures-and-algorithms-in-javascript/blob/master/book/chapters/part4.adoc )
387387
388- - Never get stuck solving a problem with 7 simple steps.
389- - Master the most popular sorting algorithms (mergesort, quicksort, insertion sort, ...)
390- - Learn different approaches to solve problems such as divide and conquer, dynamic programming, greedy algorithms, and backtracking.
388+ <!-- - Never get stuck solving a problem with 7 simple steps. -->
389+ <!-- - Master the most popular sorting algorithms (mergesort, quicksort, insertion sort, ...) -->
390+ <!-- - Learn different approaches to solve problems such as divide and conquer, dynamic programming, greedy algorithms, and backtracking. -->
391391
392392<blockquote >
393393 <details >
0 commit comments