next up previous
Next: Up: Previous:

Set-Covering Problem

Definition

Algorithm:

Greedy-Set-Cover(X, F)
$\;\;\;\;\;$U = X $\;\;\;\;\;$; uncovered
$\;\;\;\;\;$C = {}
$\;\;\;\;\;$while U $\neq$ {}
$\;\;\;\;\;$ $\;\;\;\;\;$select S $\in$ F maximizing \(\mid S \;\cap\; U \mid\)
$\;\;\;\;\;$ $\;\;\;\;\;$U = U - S
$\;\;\;\;\;$ $\;\;\;\;\;$C = C $\cup$ {S}
$\;\;\;\;\;$return C



Corollary 37.5

Greedy-Set-Cover has a ratio bound of (ln$\mid$x$\mid$ + 1).

Proof in book.


next up previous
Next: Up: Previous: