Binary search tree: insert

From Algowiki
Revision as of 22:04, 19 September 2014 by Jhohmann (talk | contribs)
Jump to navigation Jump to search

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