AlgoGenesis / C

AlgoGenesis is a centralized open-source platform dedicated to providing optimized and well-documented algorithm implementations in C. Perfect for both beginners and advanced users, this repository serves as a comprehensive learning resource for solving algorithmic challenges.
MIT License
90 stars 293 forks source link

[NEW ALGORITHM] Bron-Kerbosch Algorithm for undirected graph #1529

Closed IkkiOcean closed 20 hours ago

IkkiOcean commented 4 days ago

Name:

Bron-Kerbosch Algorithm

About:

The Bron-Kerbosch Algorithm is a recursive, backtracking algorithm, widely used in fields such as social network analysis, bioinformatics, and community detection, where identifying clusters or highly interconnected subgroups is valuable. It’s efficient for finding all cliques in sparse graphs and often outperforms brute-force approaches due to its pruning techniques.


Labels:

new algorithm, gssoc-ext, hacktoberfest, level1


Assignees:

pankaj-bind commented 2 days ago

assigned