Size: 1251
Comment:
|
Size: 1261
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 11: | Line 11: |
{{{ G = (V,E) }}} |
[[latex2( |
Line 15: | Line 13: |
The size of input has two components {{{ |V|, |E| }}} |
The size of input has two components [[latex2($$|V|,|E|$$)]] |
Line 23: | Line 17: |
{{{ O(VE) = O(|V|*|E|) }}} |
[[latex2($$O(VE)=O(|V|*|E|)$$)]] |
Line 28: | Line 20: |
{{{ V[G] and the edges E[G] }}} |
[[latex2($$V[G]$$)]] and the edges [[latex2($$E[G]$$)]] |
Line 62: | Line 53: |
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:
The size of input has two components [[latex2(
In AsymptoticNotation we abuse the notation for size by writing
[[latex2(
To denote the set of vertices in graph G in pseudocode as
latex2(
Chapter 22
Concepts
Applications
Decomposing a graph into its StronglyConnectedComponents
Chapter 23
Minimum Spanning Trees are generally GreedyAlgorithms
Chapter 24-25
- 24: Shortest Path to all vertices from a single vertex
Chapter 26
This general problem arises in many forms and a good algorithm for computer MaxFlow can be used to solve a variety of related problems