This is a bipartite graph, and we want to list the entire maximum complete bipartite subgraph.
For instance,
the set of vertices L = {A, B, C, D}
the set of vertices R = {a, b, c, d, e}
ribs: Aa, Ab, Ba, Bb, Cc, Cd, Dc, Dd, De
Maximum full dicotyledonous:
{A, B} - {a, b}
{C, D} - {c, d}
{D} - {c, d, e}
I found brute force algorithm, O (2 ^ n). I do not know if there is some kind of approximation algorithm or a randomized algorithm.
source
share