Graph Theory

This page contains over view information and links to concepts covered in "Intro to Algorithms" by Cormen, Leiserson & Rivest.

See Also TreeStructures

Notation

A graph is usually specified by:

latex2($$G=(V,E)$$)

The size of input has two components [[latex2($$|V|,|E|$$)]]

In AsymptoticNotation we abuse the notation for size by writing

[[latex2($$O(VE)=O(|V|*|E|)$$)]]

Denote the set of vertices in graph G in pseudocode as latex2($$V[G]$$) and the edges latex2($$E[G]$$)

Chapter 22

Concepts

Applications

Chapter 23

Chapter 24-25

Chapter 26