Differences between revisions 11 and 12
Revision 11 as of 2014-11-11 16:48:41
Size: 1250
Editor: scot
Comment:
Revision 12 as of 2014-11-11 16:49:08
Size: 1247
Editor: scot
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
[[latex2($$G=(V,E)$$)]] <<latex($G=(V,E)$)>>

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:

<<latex($G=(V,E)$)>>

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

In AsymptoticNotation we abuse the notation for size by writing

<<latex($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

  • MaxFlowNetwork

  • This general problem arises in many forms and a good algorithm for computer MaxFlow can be used to solve a variety of related problems

GraphTheoryPage (last edited 2020-01-23 22:56:28 by scot)