Given a list of specific subsets like
S = [ {1, 2}, {3, 4}, {1}, {2, 3}, {4}, {3} ]
and a "universe" set like
U = {1, 2, 3, 4}
what elegant and simple algorithm can be used to find all the possible partitions of U made of sets from S? With this example, such partitions include
{1, 2} {3, 4}
{1, 2} {3} {4}
etc.
Use recursion.
Split the problem into two smaller problems based on whether the first element is used or not:
{1,2}
and any of the the remaining sets.{1,2}
but using any of the the remaining sets.These two options cover all possibilities.
{3,4}
using only[ {3, 4}, {1}, {2, 3}, {4}, {3} ]
.{1,2,3,4}
using only[ {3, 4}, {1}, {2, 3}, {4}, {3} ]
.To see how to solve these smaller problems refer to this similar question.