Update graph/hopcroft_karp.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Krishna Pal Deora
2020-10-01 04:46:20 +05:30
committed by GitHub
parent 8d1fc2769a
commit c1c48c05a8

View File

@@ -248,7 +248,10 @@ void BGraph::addEdge(int u, int v)
adj[u].push_back(v); // Add v to us list.
}
/** Main function */
/**
* @brief Main function
* @returns 0 on exit
*/
int main()
{
int v1 = 0, v2 = 0, e = 0;