Self-balancing trees insertion

From Algorithm Wiki
Revision as of 12:00, 10 October 2022 by Admin (talk | contribs) (Created page with "== Problem Description== Given a binary tree, delete a node from it by making sure that tree shrinks from the bottom. == Bounds Chart == 1050px == Step Chart == 1050px == Improvement Table == {| class="wikitable" style="text-align:center;" width="100%" !width="20%" | Complexity Classes !! width="40%" | Algorithm Paper Links !! width="40%" | Lower Bounds Paper...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Problem Description

Given a binary tree, delete a node from it by making sure that tree shrinks from the bottom.

Bounds Chart

File:Self-balancing trees insertionBoundsChart.png

Step Chart

Self-balancing trees insertionStepChart.png

Improvement Table

Complexity Classes Algorithm Paper Links Lower Bounds Paper Links
Exp/Factorial
Polynomial > 3
Cubic
Quadratic
nlogn
Linear
logn [ 2-3 Tree (1970)]

Guibas, Sedgewick Red-Black Tree (1972)