Class GreedyWeightedMatching<V,​E>

  • Type Parameters:
    V - the graph vertex type
    E - the graph edge type
    All Implemented Interfaces:
    MatchingAlgorithm<V,​E>

    public class GreedyWeightedMatching<V,​E>
    extends java.lang.Object
    implements MatchingAlgorithm<V,​E>
    The greedy algorithm for computing a maximum weight matching in an arbitrary graph. The algorithm is a 1/2-approximation algorithm and runs in O(n + m log n) where n is the number of vertices and m is the number of edges of the graph. This implementation accepts directed and undirected graphs which may contain self-loops and multiple edges. There is no assumption on the edge weights, i.e. they can also be negative or zero.

    The greedy algorithm is the algorithm that first orders the edge set in non-increasing order of weights and then greedily constructs a maximal cardinality matching out of the edges with positive weight. A maximal cardinality matching (not to be confused with maximum cardinality) is a matching that cannot be increased in cardinality without removing an edge first.

    For more information about approximation algorithms for the maximum weight matching problem in arbitrary graphs see:

    • R. Preis, Linear Time 1/2-Approximation Algorithm for Maximum Weighted Matching in General Graphs. Symposium on Theoretical Aspects of Computer Science, 259-269, 1999.
    • D.E. Drake, S. Hougardy, A Simple Approximation Algorithm for the Weighted Matching Problem, Information Processing Letters 85, 211-213, 2003.
    Since:
    September 2016
    See Also:
    PathGrowingWeightedMatching
    • Field Detail

      • graph

        private final Graph<V,​E> graph
      • comparator

        private final java.util.Comparator<java.lang.Double> comparator
    • Constructor Detail

      • GreedyWeightedMatching

        public GreedyWeightedMatching​(Graph<V,​E> graph)
        Create and execute a new instance of the greedy maximum weight matching algorithm. Floating point values are compared using MatchingAlgorithm.DEFAULT_EPSILON tolerance.
        Parameters:
        graph - the input graph
      • GreedyWeightedMatching

        public GreedyWeightedMatching​(Graph<V,​E> graph,
                                      double epsilon)
        Create and execute a new instance of the greedy maximum weight matching algorithm.
        Parameters:
        graph - the input graph
        epsilon - tolerance when comparing floating point values