-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathDFS_stack_iterative.py
43 lines (35 loc) · 1.31 KB
/
DFS_stack_iterative.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
"""
Depth first search has many applications,for example finding if a graph G is connected.
Identify all nodes that are reachable from a given starting node.
Programmed by Aladdin Persson <aladdin.persson at hotmail dot com>
2019-02-17 Initial programming
2020-03-29 Cleaned up code, made test cases
"""
def DFS(G, start_node):
"""
:param G: Graph with G = {from_node1:[to_node1, to_node2], from_node2: [to_node,] etc}
:param start_node: starting node to run BFS from
:return: returns visited boolean array and path in which order it visited them
"""
visited = [False for i in range(1, len(G) + 1)]
path = [start_node]
stack = []
stack.append(start_node)
while stack:
v = stack.pop()
if not visited[v - 1]:
visited[v - 1] = True
for connected_node in G[v]:
if not visited[connected_node - 1]:
stack.append(connected_node)
path.append(connected_node)
return visited, path
# if __name__ == '__main__':
# G = {1: [2, 3], 2: [1, 4], 3: [1, 4], 4: []}
# start_node = 1
# visited = DFS(G, start_node)
#
# if all(visited) == True:
# print("Return: This graph is connected!")
# else:
# print("Not all nodes were reachable, i.e the graph is not connected.")