paper-with-me

Papers

A Fast Maximum Clique Algorithm Based on Network Decomposition for Large Sparse Networks

2024-04-18 · Tianlong Fan, Wenjun Jiang, Yi-Cheng Zhang, Linyuan Lü

Finding maximum cliques in large networks is a challenging combinatorial problem with many real-world applications. We present a fast algorithm to achieve the exact solution for the maximum clique problem in large sparse networks based on efficient graph decomposition. A bunch of effective techniques is being used to greatly prune the graph and a novel concept called Complete-Upper-Bound-Induced Subgraph (CUBIS) is proposed to ensure that the structures with the potential to form the maximum clique are retained in the process of graph decomposition. Our algorithm first pre-prunes peripheral nodes, subsequently, one or two small-scale CUBISs are constructed guided by the core number and current maximum clique size. Bron-Kerbosch search is performed on each CUBIS to find the maximum clique. Experiments on 50 empirical networks with a scale of up to 20 million show the CUBIS scales are largely independent of the original network scale. This enables an approximately linear runtime, making our algorithm amenable for large networks. Our work provides a new framework for effectively solving maximum clique problems on massive sparse graphs, which not only makes the graph scale no longer the bottleneck but also shows some light on solving other clique-related problems.

📄 PDF Abstract BibTeX arXiv:2404.11862

Code (1)

ftl129/mcp 공식 구현

Similar Papers 제목 키워드 기반

Randomized heuristic for the maximum clique problem

2016-05-01 · ResearchGate 2016 5 · Shalin Shah

A clique in a graph is a set of vertices that are all directly connected to each other i.e. a complete sub-graph. A clique of the largest size is called a maximum clique. Finding the maximum clique in a graph is an NP-ha…

A Faster Branching Algorithm for the Maximum $k$-Defective Clique Problem

2024-07-23 · Chunyu Luo, Yi Zhou, Zhengren Wang, Mingyu Xiao

A $k$-defective clique of an undirected graph $G$ is a subset of its vertices that induces a nearly complete graph with a maximum of $k$ missing edges. The maximum $k$-defective clique problem, which asks for the largest…

CLIPPER+: A Fast Maximal Clique Algorithm for Robust Global Registration

2024-02-23 · Kaveh Fathian, Tyler Summers

We present CLIPPER+, an algorithm for finding maximal cliques in unweighted graphs for outlier-robust global registration. The registration problem can be formulated as a graph and solved by finding its maximum clique. T…

Point Cloud Registration

GCLIQUE: An Open Source Genetic Algorithm for the Maximum Clique Problem

2020-05-15 · journal 2020 5 · Shalin Shah

A clique in a graph is a set of vertices that are all connected to each other. A maximum clique is a clique of maximum size. A graph may have more than one maximum cliques. The problem of finding a maximum clique is a st…

C++ code

Listing k-cliques in Sparse Real-World Graphs

2021-03-11 · M. Danisch, O. D. Balalau, M. Sozio

Motivated by recent studies in the data mining community which require to efficiently list all k-cliques, we revisit the iconic algorithm of Chiba and Nishizeki and develop the most efficient parallel algorithm for such …