mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-04-05 19:49:56 +08:00
Update graph/hopcroft_karp.cpp
Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
committed by
GitHub
parent
0bd622680c
commit
f1f4117623
@@ -55,8 +55,10 @@
|
||||
const int NIL = 0;
|
||||
const int INF = INT_MAX;
|
||||
|
||||
// A class to represent Bipartite graph for
|
||||
// Hopcroft Karp implementation
|
||||
/**
|
||||
* @brief Represents Bipartite graph for
|
||||
* Hopcroft Karp implementation
|
||||
*/
|
||||
class BGraph
|
||||
{
|
||||
// m and n are number of vertices on left
|
||||
|
||||
Reference in New Issue
Block a user