Search CTRL + K

Session 03 - Introduction to Graph Theory III

Introduction To Trees

Definition

A tree is connected undirected graph with no simple circuits.

Theorem

An undirected graph is a tree if and only if there is a unique simple path between any two of its vertices.

Definition

A rooted tree is a tree in which one vertex has been designated as the root and every edge is directed away from the root.

Definition

A rooted tree is called an m-ary tree if every interal vertex has no more than m children.
The tree is called a full m-ary tree if every internal vertex has exactly m children.
An m-ary for m=2 is called a binary tree.

Definition

An ordered rooted tree is a rooted tree where the children of each internal vertex are ordered.

Theorem

A tree with n vertices has n1 edges

Theorem

A full m-ary tree with i internal vertices contains n=mi+1 vertices.

Definition

The level of a vertex in a rooted tree is the length of the unique path from the root to the vertex.
The level of the root is defined to be 0.

Definition

The height of a tree is the maximum level of a tree.

Definition

A tree of height h is balanced if all its leaves are either at level h or h1.