file:///Users/raluca/Downloads/lab4.pdf

Theory

DAG (Directed acyclic graph)

Examples

DAG:

Cycle-containing graph:

Topological sorting

Often, when dependency relations are involved, the following two problems need to be solved:

  1. Find if there is any circular dependency (in other words, if the dependency graph is a DAG or not)
  2. Put the items in an order compatible with the dependency restrictions, that is, put the vertices in a list such that whenever there is an edge (x,y), then x comes before y in that list

For proving the other way round, we use the construction algorithms below. We'll prove that neither one fails unless there is a cycle in the input graph.

Predecessor counting algorithm