Finished balanced search trees.

This commit is contained in:
John Washam 2016-07-13 19:44:12 -07:00
parent a0c607d884
commit 1268417f21

View File

@ -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