Class CompleteBipartite

java.lang.Object
org.drip.graph.core.Network
org.drip.graph.core.DirectedGraph
org.drip.graph.core.CompleteBipartite

public class CompleteBipartite
extends DirectedGraph
CompleteBipartite implements a Complete, Bipartite Graph. The References are:

  • Bollobas, B. (1998): Modern Graph Theory Springer
  • Eppstein, D. (1999): Spanning Trees and Spanners https://www.ics.uci.edu/~eppstein/pubs/Epp-TR-96-16.pdf
  • Gross, J. L., and J. Yellen (2005): Graph Theory and its Applications Springer
  • Kocay, W., and D. L. Kreher (2004): Graphs, Algorithms, and Optimizations CRC Press
  • Wikipedia (2020): Spanning Tree https://en.wikipedia.org/wiki/Spanning_tree




Author:
Lakshmi Krishnamurthy
  • Constructor Details

    • CompleteBipartite

      public CompleteBipartite​(java.util.Set<java.lang.String> vertexNameSetP, java.util.Set<java.lang.String> vertexNameSetQ, java.util.Map<java.lang.String,​Edge> crossConnectMap) throws java.lang.Exception
      CompleteBipartite Constructor
      Parameters:
      vertexNameSetP - P Vertex Name Set
      vertexNameSetQ - Q Vertex Name Set
      crossConnectMap - Cross Connection Map
      Throws:
      java.lang.Exception - Thrown if the Inputs are Invalid
  • Method Details

    • vertexNameSetP

      public java.util.Set<java.lang.String> vertexNameSetP()
      Retrieve the P Vertex Name Set
      Returns:
      The P Vertex Name Set
    • vertexNameSetQ

      public java.util.Set<java.lang.String> vertexNameSetQ()
      Retrieve the Q Vertex Name Set
      Returns:
      The Q Vertex Name Set
    • crossConnectMap

      public java.util.Map<java.lang.String,​Edge> crossConnectMap()
      Retrieve the Cross Connection Edge Map
      Returns:
      The Cross Connection Edge Map
    • p

      public int p()
      Retrieve P
      Returns:
      P
    • q

      public int q()
      Retrieve Q
      Returns:
      Q
    • isConnected

      public boolean isConnected()
      Description copied from class: DirectedGraph
      Indicate if the Graph is Connected
      Overrides:
      isConnected in class DirectedGraph
      Returns:
      TRUE - The Graph is Connected
    • isTree

      public boolean isTree()
      Description copied from class: DirectedGraph
      Indicate if the Graph is a Tree
      Overrides:
      isTree in class DirectedGraph
      Returns:
      TRUE - The Graph is a Tree
    • isComplete

      public boolean isComplete()
      Description copied from class: DirectedGraph
      Indicate if the Graph is Complete
      Overrides:
      isComplete in class DirectedGraph
      Returns:
      TRUE - The Graph is Complete
    • containsCycle

      public boolean containsCycle()
      Description copied from class: DirectedGraph
      Indicate if the Graph contains a Cycle
      Overrides:
      containsCycle in class DirectedGraph
      Returns:
      TRUE - The Graph contains a Cycle
    • type

      public int type()
      Description copied from class: DirectedGraph
      Retrieve the Graph Type
      Overrides:
      type in class DirectedGraph
      Returns:
      The Graph Type
    • spanningTreeCount

      public double spanningTreeCount()
      Description copied from class: DirectedGraph
      Retrieve the Count of the Spanning Trees
      Overrides:
      spanningTreeCount in class DirectedGraph
      Returns:
      Count of the Spanning Trees