mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-05 05:16:45 +00:00
Added the method to find the isolated nodes in the graph
This commit is contained in:
parent
506172279a
commit
1a5df6bc46
@ -279,3 +279,12 @@ def krusk(E_and_n):
|
|||||||
s[j].update(s[i])
|
s[j].update(s[i])
|
||||||
s.pop(i)
|
s.pop(i)
|
||||||
break
|
break
|
||||||
|
|
||||||
|
|
||||||
|
# find the isolated node in the graph
|
||||||
|
def find_isolated_nodes(graph):
|
||||||
|
isolated = []
|
||||||
|
for node in graph:
|
||||||
|
if not graph[node]:
|
||||||
|
isolated.append(node)
|
||||||
|
return isolated
|
||||||
|
Loading…
x
Reference in New Issue
Block a user