Procházet zdrojové kódy

Finished balanced search trees.

John Washam před 8 roky
rodič
revize
1268417f21
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -440,7 +440,7 @@ Then test it out on a computer to make sure it's not buggy from syntax.
         - [x] heap_sort() - take an unsorted array and turn it into a sorted array in-place using a max heap
             - note: using a min heap instead would save operations, but double the space needed (cannot do in-place).
 
-- [ ] **Balanced search trees**
+- [x] **Balanced search trees**
     - Know least one type of balanced binary tree (and know how it's implemented):
     - "Among balanced search trees, AVL and 2/3 trees are now passé, and red-black trees seem to be more popular.
         A particularly interesting self-organizing data structure is the splay tree, which uses rotations