Package org.graph4j.realization


package org.graph4j.realization
Algorithms for graph realization problems.
  • Class
    Description
    The bipartite graph realization problem is to determine whether there exists a bipartite graph having a specified sequence of degrees for vertices in each partition set.
    The digraph realization problem is to determine whether there exists a directed graph having a specified sequence of in-degrees and out-degrees for each vertex.
    The graph realization problem is to determine whether a given degree sequence can be represented by a simple, undirected graph.
    This class provides a method to generate a bipartite graph from a given sequence of degrees, using an adaptation of the Havel-Hakimi algorithm.
    This class provides a method to generate a graph from a given degree sequence, using the Havel-Hakimi algorithm.
    This class provides a method to generate a directed graph from a given sequence of in-degrees and out-degrees, using the Kleitman-Wang algorithm.