Self-Balancing Trees Creation (Self-Balancing Trees Creation)

From Algorithm Wiki
Revision as of 10:25, 15 February 2023 by Admin (talk | contribs) (Created page with "{{DISPLAYTITLE:Self-Balancing Trees Creation (Self-Balancing Trees Creation)}} == Description == Create a self-balancing tree given a list of elements. == Parameters == <pre>n: size of tree</pre> == Table of Algorithms == {| class="wikitable sortable" style="text-align:center;" width="100%" ! Name !! Year !! Time !! Space !! Approximation Factor !! Model !! Reference |- | AVL Tree || 1962 || $O(nlogn)$ || $O(n)$ |...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Description

Create a self-balancing tree given a list of elements.

Parameters

n: size of tree

Table of Algorithms

Name Year Time Space Approximation Factor Model Reference
AVL Tree 1962 $O(nlogn)$ $O(n)$ Exact Deterministic
Guibas, Sedgewick Red-Black Tree 1972 $O(nlogn)$ $O(n)$ Exact Deterministic Time
Hopcroft 2-3 Tree 1970 $O(nlogn)$ $O(n)$ Exact Deterministic
Tarjan Splay Tree 1985 $O(nlogn)$ $O(n)$ Exact Deterministic
Bayer, McCreight B-Tree 1970 $O(n*b*log(n)$/log(b))? $O(n)$ Exact Deterministic
Scapegoat Tree 1989 $O(nlogn)$ $O(n)$ Exact Deterministic Time
Treap 1989 $O(nlogn)$ $O(n)$ Exact Randomized Time
Tango Tree 2004 $O(nlogn)$ $O(n)$ Exact Deterministic Time

Time Complexity graph

Error creating thumbnail: Unable to save thumbnail to destination

Space Complexity graph

Error creating thumbnail: Unable to save thumbnail to destination

Pareto Decades graph

Error creating thumbnail: Unable to save thumbnail to destination