Package algs42
Class DigraphGenerator
java.lang.Object
algs42.DigraphGenerator
The
DigraphGenerator class provides static methods for creating
various digraphs, including Erdos-Renyi random digraphs, random DAGs,
random rooted trees, random rooted DAGs, random tournaments, path digraphs,
cycle digraphs, and the complete digraph.
For additional documentation, see Section 4.2 of Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne.
- Author:
- Robert Sedgewick, Kevin Wayne
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic DigraphbinaryTree(int V) Returns a complete binary tree digraph onVvertices.static Digraphcomplete(int V) Returns the complete digraph onVvertices.static Digraphstatic Digraphcycle(int V) Returns a cycle digraph onVvertices.static Digraphdag(int V, int E) Returns a random simple DAG containingVvertices andEedges.static DigrapheulerianCycle(int V, int E) Returns an Eulerian cycle digraph onVvertices.static DigrapheulerianPath(int V, int E) Returns an Eulerian path digraph onVvertices.static Digraphstatic voidstatic Digraphpath(int V) Returns a path digraph onVvertices.static Digraphrandom(int V, int E) Create a random digraph with V vertices and E edges.static DigraphrootedInDAG(int V, int E) Returns a random rooted-in DAG onVvertices andEedges.static DigraphrootedInTree(int V) Returns a random rooted-in tree onVvertices.static DigraphrootedOutDAG(int V, int E) Returns a random rooted-out DAG onVvertices andEedges.static DigraphrootedOutTree(int V) Returns a random rooted-out tree onVvertices.static Digraphsimple(int V, double p) Returns a random simple digraph onVvertices, with an edge between any two vertices with probabilityp.static Digraphsimple(int V, int E) Returns a random simple digraph containingVvertices andEedges.static Digraphstrong(int V, int E, int c) Returns a random simple digraph onVvertices,Eedges and (at most)cstrong components.static Digraphtournament(int V) Returns a random tournament digraph onVvertices.
-
Constructor Details
-
DigraphGenerator
public DigraphGenerator()
-
-
Method Details
-
fromIn
-
copy
-
random
Create a random digraph with V vertices and E edges. Expected running time is proportional to V + E. -
simple
Returns a random simple digraph containingVvertices andEedges.- Parameters:
V- the number of verticesE- the number of vertices- Returns:
- a random simple digraph on
Vvertices, containing a total ofEedges - Throws:
IllegalArgumentException- if no such simple digraph exists
-
simple
Returns a random simple digraph onVvertices, with an edge between any two vertices with probabilityp. This is sometimes referred to as the Erdos-Renyi random digraph model. This implementations takes time propotional to V^2 (even ifpis small).- Parameters:
V- the number of verticesp- the probability of choosing an edge- Returns:
- a random simple digraph on
Vvertices, with an edge between any two vertices with probabilityp - Throws:
IllegalArgumentException- if probability is not between 0 and 1
-
complete
Returns the complete digraph onVvertices.- Parameters:
V- the number of vertices- Returns:
- the complete digraph on
Vvertices
-
dag
Returns a random simple DAG containingVvertices andEedges. Note: it is not uniformly selected at random among all such DAGs.- Parameters:
V- the number of verticesE- the number of vertices- Returns:
- a random simple DAG on
Vvertices, containing a total ofEedges - Throws:
IllegalArgumentException- if no such simple DAG exists
-
tournament
Returns a random tournament digraph onVvertices. A tournament digraph is a DAG in which for every two vertices, there is one directed edge. A tournament is an oriented complete graph.- Parameters:
V- the number of vertices- Returns:
- a random tournament digraph on
Vvertices
-
rootedInDAG
Returns a random rooted-in DAG onVvertices andEedges. A rooted in-tree is a DAG in which there is a single vertex reachable from every other vertex. The DAG returned is not chosen uniformly at random among all such DAGs.- Parameters:
V- the number of verticesE- the number of edges- Returns:
- a random rooted-in DAG on
Vvertices andEedges
-
rootedOutDAG
Returns a random rooted-out DAG onVvertices andEedges. A rooted out-tree is a DAG in which every vertex is reachable from a single vertex. The DAG returned is not chosen uniformly at random among all such DAGs.- Parameters:
V- the number of verticesE- the number of edges- Returns:
- a random rooted-out DAG on
Vvertices andEedges
-
rootedInTree
Returns a random rooted-in tree onVvertices. A rooted in-tree is an oriented tree in which there is a single vertex reachable from every other vertex. The tree returned is not chosen uniformly at random among all such trees.- Parameters:
V- the number of vertices- Returns:
- a random rooted-in tree on
Vvertices
-
rootedOutTree
Returns a random rooted-out tree onVvertices. A rooted out-tree is an oriented tree in which each vertex is reachable from a single vertex. It is also known as a arborescence or branching. The tree returned is not chosen uniformly at random among all such trees.- Parameters:
V- the number of vertices- Returns:
- a random rooted-out tree on
Vvertices
-
path
Returns a path digraph onVvertices.- Parameters:
V- the number of vertices in the path- Returns:
- a digraph that is a directed path on
Vvertices
-
binaryTree
Returns a complete binary tree digraph onVvertices.- Parameters:
V- the number of vertices in the binary tree- Returns:
- a digraph that is a complete binary tree on
Vvertices
-
cycle
Returns a cycle digraph onVvertices.- Parameters:
V- the number of vertices in the cycle- Returns:
- a digraph that is a directed cycle on
Vvertices
-
eulerianCycle
Returns an Eulerian cycle digraph onVvertices.- Parameters:
V- the number of vertices in the cycleE- the number of edges in the cycle- Returns:
- a digraph that is a directed Eulerian cycle on
Vvertices andEedges - Throws:
IllegalArgumentException- if eitherV <= 0orE <= 0
-
eulerianPath
Returns an Eulerian path digraph onVvertices.- Parameters:
V- the number of vertices in the pathE- the number of edges in the path- Returns:
- a digraph that is a directed Eulerian path on
Vvertices andEedges - Throws:
IllegalArgumentException- if eitherV <= 0orE < 0
-
strong
Returns a random simple digraph onVvertices,Eedges and (at most)cstrong components. The vertices are randomly assigned integer labels between0andc-1(corresponding to strong components). Then, a strong component is created among the vertices with the same label. Next, random edges (either between two vertices with the same labels or from a vertex with a smaller label to a vertex with a larger label). The number of components will be equal to the number of distinct labels that are assigned to vertices.- Parameters:
V- the number of verticesE- the number of edgesc- the (maximum) number of strong components- Returns:
- a random simple digraph on
Vvertices andEedges, with (at most)cstrong components - Throws:
IllegalArgumentException- ifcis larger thanV
-
main
-