4
Preorder traversal means __<visit the node, then the left child, then the right
child>__.
Inorder traversal means __<visit the left child, then the node, then the right
child>__.
Postorder traversal means __<visit the left child, then the right child, then the
node>__.
Level-order traversal means __<visit the nodes at each level, one level at at time,
starting with the root>__.
True/False. The binary tree shown above is balanced.
a Binary Tree.
as a find operation for binary search tree without the balance assumption is O(n).
True/False. A tree is a nonlinear structure whose elements are organized into a
hierarchy.
allocated contiguously regardless of the completeness of the tree.
True/False. In general, a balanced n-ary tree with m elements will have height
lognm.
the node.