import java.util.Collection; public interface DiscreteKnapsack { public Collection selecteer(Collection items, int M); }