Given an array of node and an array of edges, how do you calculate the number of connected graphs?
|
|
You can use a union find (you can search it up). Start with all of the nodes as separate sets, then for each edge join the two nodes that the edge connects into the same set. Then check how many different sets there are by going through all the nodes and finding how many different representatives there are. |
|||||
|
|
|||||||||||
|
|
To elaborate on quasiverse's answer, here's a short pseudo code for it: make_set(v) creates a new set whose only member is v. union(x, y) unites the two sets x and y. The representative element for the new set is chosen from one of the two sets get_representatve(v) returns the representative of the set the given node is a member of. Find connected components in a graph G = (V, E):
Implementing the necessary functions is an exercise for the reader ;-) Anyway it'll work fine for undirected graphs, but if you want strongly connected components you should look at Tarjan's algorithm. For parallel implementations there exists afaik no work-efficient deterministic algorithm, but some interesting random ones. |
|||
|
|
|
Yes, there is an algorithm which is linear in the size of the graph, O(|V| + |E|).
|
|||
|
|
|
For undirected graphs, this can be done in O(n) time, with a simple DFS. Here's how: Define To find the answer, start the DFS at any node and initiate the Every time Here's the pseudo-code:
From Dasgupta Algorithms (section 3.2.3) |
|||
|
|