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
8d1fc2769a
commit
c1c48c05a8
@@ -248,7 +248,10 @@ void BGraph::addEdge(int u, int v)
|
||||
adj[u].push_back(v); // Add v to u’s list.
|
||||
}
|
||||
|
||||
/** Main function */
|
||||
/**
|
||||
* @brief Main function
|
||||
* @returns 0 on exit
|
||||
*/
|
||||
int main()
|
||||
{
|
||||
int v1 = 0, v2 = 0, e = 0;
|
||||
|
||||
Reference in New Issue
Block a user