What are the common tree features?
In this example, what are descendants and ancestors?


What is an interior node?
nodes that have at least one child
What is in and out degree?
what is the in-degree of root?
what is the out-degree of leaves?
root is always in-degree 0
leaves is always out-degree 0

What are the tree operations?
What is a binary tree and what are it’s properties?
A binary tree is a tree in which each node has at most two children (has outdegree <= 2)
Properties:

What is a tree (what does it represent)
A tree represents a hierarchical relationship among data (such as a file system)
