What is a parent node?
A node in a tree that has children.
What is a child node?
A node below a parent node.
What is a subtree?
A parent with children within another parent child relationship.
What is a root?
Top of the tree
What is a leaf?
A node with no children.
How do you traverse preorder?
Put flag on left, traverse from left to right collection flags.
How do you traverse inorder?
Flag below the node, and collect the flags left to right.
How do you post order traversal?
Flag on the right of the node. Collect flags left to right.
What is breadth order tree traversal?
Left to right layer by later
starting from root.