-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbfs.py
43 lines (36 loc) · 1.13 KB
/
bfs.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
from collections import defaultdict
class Graph:
def __init__(self, target):
self.graph = defaultdict(list)
self.target = target
"""
Adds edge to a graph
"""
def addEdge(self, current, next):
self.graph[current].append(next)
"""
Backtraces to find and return path
"""
def backtrace(self, parent, start, end):
path = [end]
while path[-1] != start:
path.append(parent[path[-1]])
path.reverse()
return path
"""
Searches for end node using breadth-first search
Maintains map from parents to children to backtrace once end is found to return full path
"""
def bfs(self, start, end):
parent = {}
queue = []
queue.append(start)
while queue:
node = queue.pop(0)
if node == end:
return self.backtrace(parent, start, end)
for adjacent in self.graph.get(node, []):
if node not in queue :
parent[adjacent] = node # <<<<< record its parent
queue.append(adjacent)
return False