-
Notifications
You must be signed in to change notification settings - Fork 0
/
BSF.py
47 lines (31 loc) · 1.21 KB
/
BSF.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
45
46
47
import collections
from collections import deque
class BFS:
def Search(self, root, goalx, goaly):
open = deque()
close = dict()
pathToSolve = list()
open.append(root)
close[root.location] = True
while ( not len(open) == 0):
currrentNode = open.popleft()
currrentNode.ExpandMove()
if (currrentNode.isGoal(goaly, goalx)):
self.findpath(currrentNode, pathToSolve)
return pathToSolve
for i in range(len(currrentNode.childerin)):
if (currrentNode.childerin[i].isGoal(goalx, goaly)):
self.findpath(currrentNode, pathToSolve)
return pathToSolve
try:
if not close[currrentNode.childerin[i].location]:
print()
except KeyError:
open.append(currrentNode.childerin[i])
close[currrentNode.childerin[i].location] = True
def findpath(self, go, lis=[]):
c = go
lis.append(c)
while (not c.pirent == None):
c = c.pirent
lis.append(c)