Tagged Questions
The clique tag has no wiki summary.
9
votes
5answers
5k views
Bron-Kerbosch algorithm for clique finding
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 ...
4
votes
2answers
565 views
Finding max clique in perfect graphs
A fast algorithm to find the size of the largest clique in a perfect graph(this one having odd cycles with at least 1 chord) with about 100 vertices ??
And is there any simpler method than brute ...
3
votes
0answers
488 views
My naive maximal clique finding algorithm runs faster than Bron-Kerbosch's. What's wrong?
In short, my naive code (in Ruby) looks like:
# $seen is a hash to memoize previously seen sets
# $sparse is a hash of usernames to a list of neighboring usernames
# $set is the list of output ...
3
votes
1answer
130 views
Recreate sets from combinations of these sets
I came across a specific problem and looking for some algorithm for it. The problem to solve is as described below.
Let's say we have combinations like below
1 - 3 - 5
1 - 4 - 5
1 - 8 - 5
2 - 4 ...
1
vote
1answer
48 views
Bron Kerbosh algorithm for clique finding - what happens when the pivot vertex doesn't exist?
The wikipedia pseudocode on BK clique finding with pivoting:
BronKerbosch2(R,P,X):
if P and X are both empty:
report R as a maximal clique
choose a pivot vertex u in P ⋃ X
for each ...
1
vote
2answers
522 views
clique number of a graph
I would like to know a fast algorithm to find only the clique number(without actually finding the clique) of a graph with about 100 vertices.
I am trying to solve the following problem.
...
1
vote
1answer
674 views
What are the names of network interfaces on the Motorola CLIQ XT?
The network interfaces on Android interfaces are listed as directories in the file system in /sys/class/net/.
For most Android devices the network interface for gprs traffic is called rmnet0 and for ...
1
vote
2answers
255 views
algorithm problem
A graph is a subgraph of the graph in which any vertex is connected with the rest of vertexes.
In the k- problem, the input is an undirected graph and a number k, and the output is a clof size k if ...
0
votes
0answers
62 views
Maximum-clique practical examples
The question is: what are examples of clique problem applications?
I mean, what problems can be solved by reducing to clique problem (sorry for tautology)?
All I came with is finding social cliques: ...
0
votes
0answers
50 views
Finding all maximal cliques using GPU
Is there any ready gpu-accelerated solution for finding all maximal cliques in large graphs? (about 5k-20k vertexes).
The ideal would be a solution that takes the input file in DIMACS format and ...
0
votes
1answer
261 views
How to find the largest clique in a map using C programming
I have a map read in and stored in a integer array.
I need to find all nodes that have connections and then print only the maximal connections based on connections with the largest node groups.
A ...