Skip to content

Commit 329d470

Browse files
committed
Adding wikipedia url for Algorithm
1 parent 5cfd7d6 commit 329d470

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/com/thealgorithms/graph/HopcroftKarp.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
/**
66
* @author Panteleimon Tzecheridis
7+
*
78
* Implementation of the Hopcroft–Karp algorithm for finding the maximum matching in a bipartite graph.
89
*
910
* The bipartite graph is assumed to have:
@@ -15,6 +16,8 @@
1516
* adj[0] = [0, 1] // left vertex 0 connects to right vertices 0 and 1
1617
*
1718
* Time complexity: O(E * sqrt(V))
19+
*
20+
* @see <a href="https://en.wikipedia.org/wiki/Hopcroft%E2%80%93Karp_algorithm">Wikipedia: Hopcroft–Karp algorithm</a>
1821
*/
1922
public class HopcroftKarp {
2023

0 commit comments

Comments
 (0)