-
Notifications
You must be signed in to change notification settings - Fork 0
/
DFS.py
36 lines (27 loc) · 962 Bytes
/
DFS.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
from collections import deque
class DFS:
def Search(self, root, goaly, goalx):
open = deque()
close = dict()
pathToSolve = list()
open.append(root)
close[root.location] = True
while (not len(open) == 0):
currrentNode = open.pop()
currrentNode.ExpandMove()
for i in range(len(currrentNode.childerin)):
if (currrentNode.childerin[i].isGoal(goalx, goaly)):
self.findpath(currrentNode.childerin[i], 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)