Question from Skien's book on the algorithm:
The covering of the vertices of the graph G = (V, E) is a subset of the vertices V ∈ V such that each edge in E contains at least one vertex from V. An independent collection of the graph G = (V, E) is a subset of the vertices V ∈ V such that no edge in E contains both vertices from V
An independent vertex cover is a subset of vertices that is both an independent set and a vertex cover G. Give an efficient algorithm to check if G contains an independent vertex cover. What problem does the classical graph reduce to?
Does anyone know the answer to this question?
Thanks.
UPDATE
(Need suggestions on this thought)
So far, I think this has to do with checking if the graph can be colored using two colors, i.e. Is he dicotyledonous? If the BFS variant is used to color the graph, say, white and black, then vertices with one of these colors, for example, white, also form in some cases a vertex cover.
source share