Let's say we have an undirected and unweighted network graph.
What is the best algorithm to use to generate "clusters" that have the following properties:
- Within a given cluster, each node must have an edge to at least x other nodes in the cluster. For example, if we choose a value of x = 5, it means that each node in that cluster must have an edge to at least 5 of the other nodes in the cluster
- A node can belong to more than one "cluster". I'm not trying to determine "subgraphs". A node could be part of 20 clusters, so long as the cluster property above (eg. at least x edges to the other nodes in the cluster) is met.
Is there an algorithm that can be used to determine this?

