vote up 3 vote down star
1

Can anyone tell me, where on the web I can find an explanation for Bron-Kerbosch algorithm for clique finding or explain here how it works?

I know it was published in "Algorithm 457: finding all cliques of an undirected graph" book, but I can't find free source that will describe the algorithm.

I don't need a source code for the algorithm, I need an explanation of how it works.

flag

57% accept rate
1  
Alex I bet that post was down-voted for "tell me, where on the web..." Don't ask people to do you job. Just ask them to clarify how it works – aku Sep 27 '08 at 6:52
I meant on the web as in not in the book, since I won't have any access to library for about two weeks :( – Alex Reitbort Sep 27 '08 at 8:33

5 Answers

vote up 1 vote down check

Try finding someone with an ACM student account who can give you a copy of the paper, which is here: http://portal.acm.org/citation.cfm?doid=362342.362367

I just downloaded it, and it's only two pages long, with an implementation in Algol 60!

link|flag
can you please send it to me at joker99+bron@gmail.com ? – Alex Reitbort Sep 27 '08 at 13:26
vote up 0 vote down

I saw this presentation, however I couldn't understand how the algorithm works from it. It's too simplified. At least for someone like me, who never saw this algorithm before.

I was hoping may be someone have more extensive explanation.

link|flag
vote up 0 vote down

For what it is worth, I found a Java implementation: http://joelib.cvs.sourceforge.net/joelib/joelib2/src/joelib2/algo/clique/BronKerbosch.java?view=markup

HTH.

link|flag
I found 2 java implementations and one C implementation. May be it works, but I also need an understanding of how does it work, and source code doesn't have a lot of comments about how does it works. – Alex Reitbort Sep 27 '08 at 13:25
vote up 0 vote down

There is the algorithm right here I have rewritten it using Java linkedlists as the sets R,P,X and it works like a charm (o good thing is to use the function "retainAll" when doing set operations according to the algorithm).

I suggest you think a little about the implementation because of the optimization issues when rewriting the algorithm

link|flag
vote up 0 vote down

here is python implementation http://kuchaev.com/fun%5Fproblems/?p=17

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.