From charlesreid1

(Created page with "=Notes= Directed acyclic graphs are a technical term for trees that are directed.")
 
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Notes=
=Notes=


Directed acyclic graphs are a technical term for trees that are directed.
A directed acyclic graph is a directed graph that does not contain cycles.
 
For notes on detecting cycles, see [[Graphs/Cycles]]. (Use depth first search - see [[Graphs/DFS]]).
 
Examples of DAGs:
* All trees are DAGs (see [[Trees]])
* All git repositories are DAGs
 
=Flags=
 
{{TreesFlag}}
 
{{GraphsFlag}}

Latest revision as of 20:19, 11 October 2017

Notes

A directed acyclic graph is a directed graph that does not contain cycles.

For notes on detecting cycles, see Graphs/Cycles. (Use depth first search - see Graphs/DFS).

Examples of DAGs:

  • All trees are DAGs (see Trees)
  • All git repositories are DAGs

Flags