Basic graph theory: trees (CSCI 2824, Spring 2015)In this lecture, we will study trees:
TreesYou have most probably studied rooted trees and binary search trees as a data-structure for organizing lists of numbers and efficiently performing insertions and deletions. However a tree is a useful structure in many other parts of CS:
Let us start with the simplest kind of trees: unrooted and undirected trees. Definition
A (unrooted) tree
A rooted tree ExamplesHere are some examples of unrooted trees:
Non-ExamplesThe following graph is not a tree. It has a cycle:
Here is another example that has more than one maximal connected components and is not a tree:
Properties of TreesLeaves of a TreeA leaf of an unrooted tree is a node that has a degree
Leaves are
Leaves are
Leaves are Claim Every tree has a leaf. Proof
If the tree just has one node, then it is trivially a leaf. If the tree has two nodes connected by an edge, both nodes are leaves. Let us focus on trees with three or more nodes. Let us assume that a tree Start from any node
Note that the walk above can be continued for arbitrarily many steps. However, since number of vertices is finite, the walk repeats a vertex. Let for some Thus, we have concluded that every tree has a leaf. Number of EdgesClaim A tree with Proof
Proof is by weak induction on the number of nodes Base Case: Take any tree with Inductive Hypothesis: Let us assume that all trees with Take some tree Number of LeavesClaim Any tree has at least two leaves. We will prove this in class by the following argument. We already know that any tree has at least one leaf. Proof
Let us assume that there is a tree with
Paths in TreesClaim Let Argument in class Since the tree is connected component itself, there has to be at least one path from We will argue that having two distinct paths will necessarily imply that the tree has a cycle which will lead to a contradiction. |