Skip to content

SNUCSE-CTA/WODC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Efficient Defective Clique Enumeration and Search with Worst-Case Optimal Search Space (SIGMOD 2026)

This repository implements algorithms for maximal k-defective clique enumeration and maximum k-defective clique search.

How to compile

Maximal k-defective clique enumeration

mkdir build
cd build
cmake .. -DMAXIMAL=ON
make

Maximum k-defective clique search

mkdir build
cd build
cmake .. -DMAXIMUM=ON
make

An executable named main.out will be generated in the build/main directory.

How to run

In the build directory:

Maximal k-defective clique enumeration

./main/main.out {graph-path} {k} {q}

Maximum k-defective clique search

./main/main.out {graph-path} {k}

For example, to run the maximal k-defective clique enumeration algorithm:

./main/main.out ../datasets/soc-FourSquare/ 1 30

Data format

Our data format follows the binary format described here: https://lijunchang.github.io/Cohesive_subgraph_book/datasets

Datasets

About

[SIGMOD 2026] Efficient Defective Clique Enumeration and Search with Worst-Case Optimal Search Space

Topics

Resources

License

Stars

3 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors