Expand description
Set Cover problem solvers
The set cover problem: find minimum cost collection of sets that covers all elements.
§Algorithms
- Greedy: O(n²) approximation with ln(n) guarantee
- Local search: Improve greedy solution
Structs§
- SetCover
Problem - A set cover problem instance
- SetCover
Solution - Solution to a set cover problem