Hi all,I am attempting to apply a Bron-Kerbosch algorithm (http://en.wikipedia.org/wiki/Bron%E2%80%93Kerbosch_algorithm) to a Neo4j database that I have created via the Neo4JClient package in C#/.NET. My goal is to find cliques (complete subgraphs) of maximal size within the graph.
Is there a good way to attack this problem? My plan at the moment is to create a new linked list structure, pull down the data from the Neo4j database into that, then use the algorithm to iterate through that data structure.
I would appreciate any help, and let me know if I can provide additional information towards the problem!Scott