Click or drag to resize
BipartiteMatching Class

The BipartiteMatching class represents a data type for computing a Maximum (cardinality) matching and a Minimum (cardinality) vertex cover in a bipartite graph.

A Bipartite graph in a graph whose vertices can be partitioned into two disjoint sets such that every edge has one endpoint in either set. A Matching in a graph is a subset of its edges with no common vertices. A Maximum matching is a matching with the maximum number of edges. A Perfect matching is a matching which matches all vertices in the graph. A Vertex cover in a graph is a subset of its vertices such that every edge is incident to at least one vertex. A Minimum vertex cover is a vertex cover with the minimum number of vertices. By Konig's theorem, in any biparite graph, the maximum number of edges in matching equals the minimum number of vertices in a vertex cover.

The maximum matching problem in Nonbipartite graphs is also important, but all known algorithms for this more general problem are substantially more complicated.

This implementation uses the Alternating path algorithm. It is equivalent to reducing to the maximum flow problem and running the augmenting path algorithm on the resulting flow network, but it does so with less overhead. The order of growth of the running time in the worst case is (E + V) V, where E is the number of edges and V is the number of vertices in the graph. It uses extra space (not including the graph) proportional to V.

See also , which solves the problem in O(E sqrt(V)) using the Hopcroft-Karp algorithm and BipartiteMatchingToMaxflow, which solves the problem in O(E V) time via a reduction to maxflow.

Inheritance Hierarchy
SystemObject
  Algs4NetBipartiteMatching

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public class BipartiteMatching

The BipartiteMatching type exposes the following members.

Constructors
  NameDescription
Public methodBipartiteMatching
Determines a maximum matching (and a minimum vertex cover) in a bipartite graph.
Top
Properties
  NameDescription
Public propertyCount
Returns the number of edges in a maximum matching.
Public propertyIsPerfect
Returns true if the graph contains a perfect matching. That is, the number of edges in a maximum matching is equal to one half of the number of vertices in the graph (so that every vertex is matched).
Top
Methods
  NameDescription
Public methodInMinVertexCover
Returns true if the specified vertex is in the minimum vertex cover computed by the algorithm.
Public methodIsMatched
Returns true if the specified vertex is matched in the maximum matching computed by the algorithm.
Public methodStatic memberMainTest
Demo test the HopcroftKarp data type. Takes three command-line arguments V1, V2, and E; creates a random bipartite graph with V1 + V2 vertices and E edges; computes a maximum matching and minimum vertex cover; and prints the results.
Public methodMate
Returns the vertex to which the specified vertex is matched in the maximum matching computed by the algorithm.
Top
Remarks

For additional documentation, see Section 6.5Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne.

This class is a C# port from the original Java class BipartiteMatching implementation by the respective authors.

See Also