Find minimum vertex Cover for bipartite graph given the maximum matching
问题 I seem to have found an algorithm but am having trouble understanding it, I was wondering if any of you knew the generic outline of the algorithm. Here is the link to the algorithm I found on page 2 http://www.cse.iitb.ac.in/~sundar/cs435/lecture23.pdf 回答1: Algorithm is simple as that: Find unmatched vertex, mark it as not included in minimum vertex cover. Mark all matched neighbours of this vertex as included in minimum vertex cover. Treat all mates of vertexes from previous step as