Trees
Learn about a special family of graphs called trees.
We'll cover the following...
Characteristics of a tree
A tree is a connected graph that has no cycles. The graph below is an example of a tree since it’s connected and does not contain a cycle.
Press + to interact
Path graphs are also examples of trees. In the context of trees, an isolated vertex (the trivial path) is called the trivial tree.
A vertex in a tree that has degree is called a leaf of that tree. All other vertices having a degree of at least are called internal nodes. For example, the tree shown above has leaves and ...