Minimum Vertex Cover Problem
Minimum Vertex Cover Problem
A minimum vertex cover is a vertex cover of smallest possible size. The vertex
cover number is the size of a minimum vertex cover. The following figure
shows examples of minimum vertex covers in the previous graphs.
The minimum vertex cover problem is the optimization problem of finding a
smallest vertex cover in a given graph.
INSTANCE: Graph G
OUTPUT: Smallest number k such that G has a vertex cover of size k.
If the problem is stated as a decision problem, it is called the vertex cover problem:
The vertex cover problem is an NP-complete problem: it was one of Karp's 21 NP-
complete problems. It is often used in computational complexity theory as a starting
point for NP-hardness proofs.
Applications