Handbook
Glossary
height ( tree -- n )
Binary search trees
Prev:
TREE{
Next:
first-entry ( tree -- pair/f )
Vocabulary
trees
Inputs
tree
a
tree
Outputs
n
an
integer
Word description
Returns the height of
tree
.
Definition
USING:
accessors
trees.private
;
IN:
trees
:
height
( tree -- n )
root>>
node-height
;