@@ -335,15 +335,15 @@ Learn all the different kinds of trees and its properties.
335
335
nodes value keep this order ` left < parent < right ` .
336
336
[ Code] ( https://github.com/amejiarosario/algorithms.js/blob/master/src/data-structures/trees/binary-search-tree.js )
337
337
|
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 )
339
339
<!-- [Post](https://adrianmejia.com/blog/2018/06/11/data-structures-for-beginners-trees-binary-search-tree-tutorial/#Binary-Search-Tree-BST) -->
340
340
341
341
- ** AVL Trees** : Self-balanced BST to maximize look up time.
342
342
[ Code] ( https://github.com/amejiarosario/algorithms.js/blob/master/src/data-structures/trees/avl-tree.js )
343
343
|
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 )
345
345
|
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 )
347
347
<!-- [Post](https://adrianmejia.com/blog/2018/07/16/self-balanced-binary-search-trees-with-avl-tree-data-structure-for-beginners/) -->
348
348
349
349
- ** Red-Black Trees** : Self-balanced BST more loose than AVL to
@@ -385,9 +385,9 @@ From unbalanced BST to balanced BST
385
385
386
386
### ⚒ [ Algorithms Techniques] ( https://github.com/amejiarosario/dsa.js-data-structures-and-algorithms-in-javascript/blob/master/book/chapters/part4.adoc )
387
387
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. -->
391
391
392
392
<blockquote >
393
393
<details >
0 commit comments