Finding Maximal Bicliques

2020-07-13 09:31发布

I have a problem that I was able to model as finding maximal bicliques (complete bipartite graphs) in a bipartite graph. I am aware of the Bron–Kerbosch algorithm for detecting maximal cliques, and it seems to me that there should be a way to express a biclique problem as a clique one. Does anyone have a solution, either for forming a biclique problem as a clique one, or as an available algorithm for detecting bicliques directly?

标签: algorithm
2条回答
虎瘦雄心在
2楼-- · 2020-07-13 09:58

There is a faster algorithm by Nagarajan, Kingsford "Uncovering genomic reassortments among Influenza strains by enumerating maximal bicliques" that runs in O(n^2).

查看更多
Bombasti
3楼-- · 2020-07-13 10:00

There's the following implementation of maximal biclique enumeration algorithm from Consensus algorithms for the generation of all maximal bicliques by Alexe et.al..

The theoretical running time is O(Bn^3) where B is the number of maximal bicliques.

查看更多
登录 后发表回答