Groups
Category
HopcroftโKarp computes maximum matching in a bipartite graph in O(E \sqrt{V}) time, which is asymptotically faster than repeated DFS (Kuhn's algorithm).
Kuhnโs algorithm finds a maximum matching in a bipartite graph by repeatedly searching for augmenting paths using DFS.