├── Arboricity └── Arboricity.c ├── DDegCol ├── DDegCol.c ├── DDegColEdgeParallel.c └── DDegColNodeParallel.c ├── DDegree ├── DDegree.c ├── DDegreeEdgeParallel.c └── DDegreeNodeParallel.c ├── DegCol ├── DegCol.c ├── DegColEdgeParallel.c └── DegColNodeParallel.c ├── Degen ├── kClist.c ├── kClistEdgeParallel.c └── kClistNodeParallel.c ├── DegenCol ├── DegenCol.c ├── DegenColEdgeParallel.c └── DegenColNodeParallel.c ├── Degree ├── Degree.c ├── DegreeEdgeParallel.c └── DegreeNodeParallel.c ├── ERS ├── ERS.cpp ├── nCr.txt └── readme.md ├── LD ├── LwithOrdering.cpp └── readme.md ├── RDS ├── core_and_truss_decomposition.cpp ├── core_and_truss_decomposition.h ├── main.cpp └── readme.md └── README.md /Arboricity/Arboricity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/Arboricity/Arboricity.c -------------------------------------------------------------------------------- /DDegCol/DDegCol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/DDegCol/DDegCol.c -------------------------------------------------------------------------------- /DDegCol/DDegColEdgeParallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/DDegCol/DDegColEdgeParallel.c -------------------------------------------------------------------------------- /DDegCol/DDegColNodeParallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/DDegCol/DDegColNodeParallel.c -------------------------------------------------------------------------------- /DDegree/DDegree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/DDegree/DDegree.c -------------------------------------------------------------------------------- /DDegree/DDegreeEdgeParallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/DDegree/DDegreeEdgeParallel.c -------------------------------------------------------------------------------- /DDegree/DDegreeNodeParallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/DDegree/DDegreeNodeParallel.c -------------------------------------------------------------------------------- /DegCol/DegCol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/DegCol/DegCol.c -------------------------------------------------------------------------------- /DegCol/DegColEdgeParallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/DegCol/DegColEdgeParallel.c -------------------------------------------------------------------------------- /DegCol/DegColNodeParallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/DegCol/DegColNodeParallel.c -------------------------------------------------------------------------------- /Degen/kClist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/Degen/kClist.c -------------------------------------------------------------------------------- /Degen/kClistEdgeParallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/Degen/kClistEdgeParallel.c -------------------------------------------------------------------------------- /Degen/kClistNodeParallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/Degen/kClistNodeParallel.c -------------------------------------------------------------------------------- /DegenCol/DegenCol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/DegenCol/DegenCol.c -------------------------------------------------------------------------------- /DegenCol/DegenColEdgeParallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/DegenCol/DegenColEdgeParallel.c -------------------------------------------------------------------------------- /DegenCol/DegenColNodeParallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/DegenCol/DegenColNodeParallel.c -------------------------------------------------------------------------------- /Degree/Degree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/Degree/Degree.c -------------------------------------------------------------------------------- /Degree/DegreeEdgeParallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/Degree/DegreeEdgeParallel.c -------------------------------------------------------------------------------- /Degree/DegreeNodeParallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/Degree/DegreeNodeParallel.c -------------------------------------------------------------------------------- /ERS/ERS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/ERS/ERS.cpp -------------------------------------------------------------------------------- /ERS/nCr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/ERS/nCr.txt -------------------------------------------------------------------------------- /ERS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/ERS/readme.md -------------------------------------------------------------------------------- /LD/LwithOrdering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/LD/LwithOrdering.cpp -------------------------------------------------------------------------------- /LD/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/LD/readme.md -------------------------------------------------------------------------------- /RDS/core_and_truss_decomposition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/RDS/core_and_truss_decomposition.cpp -------------------------------------------------------------------------------- /RDS/core_and_truss_decomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/RDS/core_and_truss_decomposition.h -------------------------------------------------------------------------------- /RDS/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/RDS/main.cpp -------------------------------------------------------------------------------- /RDS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/RDS/readme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawssin/kCliqueListing/HEAD/README.md --------------------------------------------------------------------------------