English

Maximal Biclique Enumeration with Improved Worst-Case Time Complexity Guarantee: A Partition-Oriented Strategy

Data Structures and Algorithms 2026-02-26 v1 Databases

Abstract

The maximal biclique enumeration problem in bipartite graphs is fundamental and has numerous applications in E-commerce and transaction networks. Most existing studies adopt a branch-and-bound framework, which recursively expands a partial biclique with a vertex until no further vertices can be added. Equipped with a basic pivot selection strategy, all state-of-the-art methods have a worst-case time complexity no better than O(m(2)n)O(m\cdot (\sqrt{2})^n)}, where mm and nn are the number of edges and vertices in the graph, respectively. In this paper, we introduce a new branch-and-bound (BB) algorithm \texttt{IPS}. In \texttt{IPS}, we relax the strict stopping criterion of existing methods by allowing termination when all maximal bicliques within the current branch can be outputted in the time proportional to the number of maximal bicliques inside, reducing the total number of branches required. Second, to fully unleash the power of the new termination condition, we propose an improved pivot selection strategy, which well aligns with the new termination condition to achieve better theoretical and practical performance. Formally, \texttt{IPS} improves the worst-case time complexity to O(mαn+nβ)O(m\cdot \alpha ^n + n\cdot \beta), where α(1.3954)\alpha (\approx 1.3954) is the largest positive root of x42x1=0x^4-2x-1=0 and β\beta represents the number of maximal bicliques in the graph, respectively. This result surpasses that of all existing algorithms given that α\alpha is strictly smaller than 2\sqrt{2} and β\beta is at most (2)n2(\sqrt{2})^n-2 theoretically. Furthermore, we apply an inclusion-exclusion-based framework to boost the performance of \texttt{IPS}, improving the worst-case time complexity to O(nγ2αγ+γβ)O(n\cdot \gamma^2\cdot\alpha^\gamma + \gamma\cdot \beta) for large sparse graphs (γ\gamma is a parameter satisfying γn\gamma \ll n for sparse graphs).

Keywords

Cite

@article{arxiv.2602.21700,
  title  = {Maximal Biclique Enumeration with Improved Worst-Case Time Complexity Guarantee: A Partition-Oriented Strategy},
  author = {Kaixin Wang and Kaiqiang Yu and Cheng Long},
  journal= {arXiv preprint arXiv:2602.21700},
  year   = {2026}
}

Comments

Accepted by SIGMOD 2026

R2 v1 2026-07-01T10:51:34.710Z