11

谁能告诉我,在网上哪里可以找到 Bron-Kerbosch 算法的解释,或者在这里解释它是如何工作的?

我知道它发表在“算法 457:找到无向图的所有派系”一书中,但我找不到可以描述该算法的免费资源。

我不需要算法的源代码,我需要解释它是如何工作的。

4

7 回答 7

8

我在这里找到了算法的解释:http ://www.dfki.de/~neumann/ie-seminar/presentations/finding_cliques.pdf 这是一个很好的解释......但我需要一个库或 C# 中的实现 -.- '

于 2010-03-30T16:38:57.740 回答
4

尝试找一个有 ACM 学生账户的人,他可以给你一份论文,地址在这里:http ://portal.acm.org/citation.cfm?doid=362342.362367

我刚刚下载了它,它只有两页长,在 Algol 60 中实现!

于 2008-09-27T09:03:07.700 回答
2

这里有算法我已经使用Java链表作为集合R,P,X重写了它,它就像一个魅力(好的是在根据算法进行集合操作时使用函数“retainAll”)。

由于重写算法时的优化问题,我建议您考虑一下实现

于 2008-10-11T21:20:10.193 回答
2

我还试图围绕 Bron-Kerbosch 算法进行思考,所以我用 python 编写了自己的实现。它包括一个测试用例和一些评论。希望这可以帮助。

class Node(object):

    def __init__(self, name):
        self.name = name
        self.neighbors = []

    def __repr__(self):
        return self.name

A = Node('A')
B = Node('B')
C = Node('C')
D = Node('D')
E = Node('E')

A.neighbors = [B, C]
B.neighbors = [A, C]
C.neighbors = [A, B, D]
D.neighbors = [C, E]
E.neighbors = [D]

all_nodes = [A, B, C, D, E]

def find_cliques(potential_clique=[], remaining_nodes=[], skip_nodes=[], depth=0):

    # To understand the flow better, uncomment this:
    # print (' ' * depth), 'potential_clique:', potential_clique, 'remaining_nodes:', remaining_nodes, 'skip_nodes:', skip_nodes

    if len(remaining_nodes) == 0 and len(skip_nodes) == 0:
        print 'This is a clique:', potential_clique
        return

    for node in remaining_nodes:

        # Try adding the node to the current potential_clique to see if we can make it work.
        new_potential_clique = potential_clique + [node]
        new_remaining_nodes = [n for n in remaining_nodes if n in node.neighbors]
        new_skip_list = [n for n in skip_nodes if n in node.neighbors]
        find_cliques(new_potential_clique, new_remaining_nodes, new_skip_list, depth + 1)

        # We're done considering this node.  If there was a way to form a clique with it, we
        # already discovered its maximal clique in the recursive call above.  So, go ahead
        # and remove it from the list of remaining nodes and add it to the skip list.
        remaining_nodes.remove(node)
        skip_nodes.append(node)

find_cliques(remaining_nodes=all_nodes)
于 2014-06-25T17:59:03.260 回答
0

对于它的价值,我找到了一个 Java 实现:http: //joelib.cvs.sourceforge.net/joelib/joelib2/src/joelib2/algo/clique/BronKerbosch.java ?view=markup

HTH。

于 2008-09-27T11:51:37.937 回答
0

我已经实现了论文中指定的两个版本。我了解到,未优化的版本,如果以递归方式解决,对理解算法有很大帮助。这是版本 1(未优化)的 python 实现:

def bron(compsub, _not, candidates, graph, cliques):
    if len(candidates) == 0 and len(_not) == 0:
        cliques.append(tuple(compsub))
        return
    if len(candidates) == 0: return
    sel = candidates[0]
    candidates.remove(sel)
    newCandidates = removeDisconnected(candidates, sel, graph)
    newNot = removeDisconnected(_not, sel, graph)
    compsub.append(sel)
    bron(compsub, newNot, newCandidates, graph, cliques)
    compsub.remove(sel)
    _not.append(sel)
    bron(compsub, _not, candidates, graph, cliques)

然后你调用这个函数:

graph = # 2x2 boolean matrix
cliques = []
bron([], [], graph, cliques)

该变量cliques将包含找到的派系。

一旦你理解了这一点,就很容易实现优化。

于 2012-01-28T16:54:02.760 回答
0

Boost::Graph 有一个很好的 Bron-Kerbosh 算法实现,给它一个检查。

于 2012-06-17T12:41:18.713 回答