-
Notifications
You must be signed in to change notification settings - Fork 248
/
Copy pathgraph-search.py
44 lines (32 loc) · 1.11 KB
/
graph-search.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
44
# https://gist.github.com/Subject22/6d340d7e2ef9a8f3ff1b49c48af57e7e
def dfs(graph, start):
stack = [(None, start)]
visited = {start}
while len(stack) > 0:
parent, current = stack.pop()
yield parent, current
new_children = graph[current] - visited
stack += ((current, child) for child in new_children)
visited |= new_children
def bfs(graph, start):
queue = [(None, start)]
visited = {start}
while len(queue) > 0:
parent, current = queue.pop(0)
yield parent, current
new_children = graph[current] - visited
queue += ((current, child) for child in new_children)
visited |= new_children
def shortest_path(graph, start, end):
paths = {None: []} # {destination: [path]}
for parent, child in bfs(graph, start):
paths[child] = paths[parent] + [child]
if child == end:
return paths[child]
return None # or raise appropriate exception
graph = {'A': {'B', 'C','E'},
'B': {'A','C', 'D'},
'C': {'D'},
'D': {'C'},
'E': {'F', 'D'},
'F': {'C'}}