From a bipartite graph I wish to find the largest complete bipartite subgraph. From what I've been able to gather, finding complete subgraphs seem to be an NP problem.
I'm completely lost as to how to approach this problem. Should I consider a brute force approach?
If the above isn't possible, is it possible to merely determine the number of components in the maximum complete bipartite? Given two sets M={A,B,C,D,E} and N={a,b,c} and given the connections, would it be possible to arrive to a conclusion that, for example, there are 3 M nodes and 2 N nodes in the largest complete subgraph?