Maximum $k$-Plex Search: An Alternated Reduction-and-Bound Method

Shuohao Gao,Kaiqiang Yu,Shengxin Liu,Cheng Long
2024-06-02
Abstract:$k$-plexes relax cliques by allowing each vertex to disconnect to at most $k$ vertices. Finding a maximum $k$-plex in a graph is a fundamental operator in graph mining and has been receiving significant attention from various domains. The state-of-the-art algorithms all adopt the branch-reduction-and-bound (BRB) framework where a key step, called reduction-and-bound (RB), is used for narrowing down the search space. A common practice of RB in existing works is SeqRB, which sequentially conducts the reduction process followed by the bounding process once at a branch. However, these algorithms suffer from the efficiency issues. In this paper, we propose a new alternated reduction-and-bound method AltRB for conducting RB. AltRB first partitions a branch into two parts and then alternatively and iteratively conducts the reduction process and the bounding process at each part of a branch. With newly-designed reduction rules and bounding methods, AltRB is superior to SeqRB in effectively narrowing down the search space in both theory and practice. Further, to boost the performance of BRB algorithms, we develop efficient and effective pre-processing methods which reduce the size of the input graph and heuristically compute a large $k$-plex as the lower bound. We conduct extensive experiments on 664 real and synthetic graphs. The experimental results show that our proposed algorithm kPEX with AltRB and novel pre-processing techniques runs up to two orders of magnitude faster and solves more instances than state-of-the-art algorithms.
Databases,Social and Information Networks
What problem does this paper attempt to address?
The paper attempts to address the problem of finding the maximum \( k \)-plex in a given graph. A \( k \)-plex is a concept in graph theory that relaxes the definition of a clique, allowing each vertex to be disconnected from at most \( k \) other vertices. Finding the maximum \( k \)-plex in a graph is a fundamental operation in graph mining and has garnered widespread attention in various fields. Most existing algorithms adopt the branch-reduction-and-bound (BRB) framework, where the key step is reduction-and-bound (RB), used to narrow down the search space. However, these algorithms face some efficiency issues. This paper proposes a new alternated reduction-and-bound method (AltRB), which effectively narrows the search space by alternately iterating the reduction process and the bounding process. Specifically, the main contributions of the paper include: 1. **Proposing a new BRB algorithm**: Named kPEX, this algorithm incorporates the proposed alternated reduction-and-bound method AltRB. 2. **Designing efficient preprocessing techniques**: Including a new graph reduction method CF-CTCP and a heuristic algorithm KPHeuris for computing an initial large \( k \)-plex. 3. **Conducting extensive experimental validation**: Experiments were conducted on 664 real and synthetic graphs, showing that kPEX is two orders of magnitude faster than existing algorithms and can solve more instances. Through these improvements, the paper aims to enhance the efficiency and effectiveness of finding the maximum \( k \)-plex.