How do you find all minimal vertex cover of bipartite graph $G$?

89 Views Asked by At

Let $G$ be a bipartite graph with vertex set $V=V_1 \cup V_2$. If $\mid V_1\mid= n$ and $\mid V_2\mid=m$ with $m\leq n$, then how to find all minimal vertex cover?

1

There are 1 best solutions below

1
On

This is largely dependent from bipartite graph to bipartite graph, Konig's Theorem states that the size of the minimal vertex cover is the size of the maximal matching. In your case, the largest matching can be at most $m$. Also see Hall's Theorem.