| Vertex Cover Problem |
Article Index for Vertex |
Website Links For Cover |
Information AboutVertex Cover Problem |
| CATEGORIES ABOUT VERTEX COVER PROBLEM | |
| graph theory | |
| np-complete problems | |
|
A '' Vertex Cover '' of an undirected Graph is a subset of the vertices of the graph which contains at least one of the two endpoints of each edge: :. In the graph at the right, {1,3,5,6} is an example of a vertex cover. {2,4,5} is another, smaller vertex cover. The vertex cover problem is the optimization problem of finding a vertex cover of minimum size in a graph. The problem can also be stated as a Decision Problem : :INSTANCE: A graph and a positive integer . :QUESTION: Is there a vertex cover of size or less for ? Vertex cover is NP-complete , which means it is unlikely that there is an efficient algorithm to solve it. NP-completeness can be proven by reduction from 3-satisfiability or, as Karp did, by reduction from the Clique Problem . Vertex cover remains NP-complete even in Cubic Graph s and even in Planar Graph s of degree at most 3.1 Vertex cover is closely related to Independent Set Problem : is a vertex cover iff its complement, , is an independent set. It follows that a graph with vertices has a vertex cover of size if and only if the graph has an independent set of size . One can find a factor-2 Approximation by repeatedly taking ''both'' endpoints of an edge into the vertex cover, then removing them from the graph. No better constant-factor approximation is known; the problem is APX-complete , i.e., it cannot be approximated arbitrarily well. More precisely, minimum vertex cover is known to be approximable within |
|
|