简体   繁体   中英

Number of complete subgraphs in a given undirected graph

What is the best approach to find the number of complete sub-graphs with maximum number of nodes possible, given an undirected graph?
PS: By complete I meant that every node is connected to every other node with an unique edge.

You are talking about Clique Problem , this is a classical computer science problem, it is NP Complete. Which means that it doesn't have any solution to it, which could run on today's computers in polynomial time .

Although, approximation algorithms exist to give a solution, they are weak.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM