Binary search tree: insert: Difference between revisions

From Algowiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
[[Category:Binary Search Tree]]
== General Information ==
== Abstract View ==
== Induction Basis ==
== Induction Step ==
== Copmplexity ==
== Pseudocode ==
TREE-INSERT(T, z)
TREE-INSERT(T, z)
:y = Null
:y = Null

Revision as of 19:22, 25 September 2014

General Information

Abstract View

Induction Basis

Induction Step

Copmplexity

Pseudocode

TREE-INSERT(T, z)

y = Null
x = root(T)
while x ≠ NULL
y = x
if key[z] < key[x]
then x = left[x]
then x = right[x]
p[z] = y
if y = NULL
then root[T] = z //Tree was empty
else if key[z] < key[y]
then left[y] = z
else right[y] = z