mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-04-06 03:59:36 +08:00
Update graph/hopcroft_karp.cpp
Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
committed by
GitHub
parent
d551d98bf1
commit
8d1fc2769a
@@ -240,8 +240,8 @@ BGraph::BGraph(int m, int n):NIL(0),INF(INT_MAX)
|
||||
/**
|
||||
* Function documentation
|
||||
* @brief function to add edge from u to v
|
||||
* @param 'u' is the position of first vertex
|
||||
* @param 'v' is the position of second vertex
|
||||
* @param u is the position of first vertex
|
||||
* @param v is the position of second vertex
|
||||
*/
|
||||
void BGraph::addEdge(int u, int v)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user