Exhaustive search (The Vertex Cover Problem The Vertex Cover Problem)

From Algorithm Wiki
Jump to navigation Jump to search

Time Complexity

$O(C(n, k)$) (i.e. (n, k) binomial coefficient)

Space Complexity

$O(k)$ auxiliary words

(Just need to keep track of current subset being checked)

Description

Approximate?

Exact

Randomized?

No, deterministic

Model of Computation

Word RAM

Year

1940

Reference