>tree ( assoc -- tree )
Binary search trees

Prev:<tree> ( -- tree )
Next:TREE{


Vocabulary
trees

Inputs
assocan assoc


Outputs
treea tree


Word description
Converts any assoc into an unbalanced binary tree. If the input assoc is any kind of tree, the elements are added in level order (breadth-first search) to copy it's shape.

Definition