We can solve Set Cover Problem by forming all the possible sets combination and verifying whether it is the minimum solution. Now we can have at most 2^n such sets combination where 'n' is the number of Set.
So, the complexity of this approach should be O(2^n). However, Wikipedia says 'the complexity of Set Cover Problem is m^n where m is the size of the universe and n is the number of sets in the collection'.
Can somebody explain how complexity is O(m^n) and not O(2^n)?
Thanks in Advance.