| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- import os
- import sys
- import math
- import heapq
- sys.path.append(os.path.dirname(os.path.abspath(__file__)) +
- "/../../Search_based_Planning/")
- from Search_2D import plotting, env
- from Search_2D.Astar import AStar
- class DFS(AStar):
- """DFS add the new visited node in the front of the openset
- """
- def searching(self):
- """
- Breadth-first Searching.
- :return: path, visited order
- """
- self.PARENT[self.s_start] = self.s_start
- self.g[self.s_start] = 0
- self.g[self.s_goal] = math.inf
- heapq.heappush(self.OPEN,
- (0, self.s_start))
- while self.OPEN:
- _, s = heapq.heappop(self.OPEN)
- self.CLOSED.append(s)
- if s == self.s_goal:
- break
- for s_n in self.get_neighbor(s):
- new_cost = self.g[s] + self.cost(s, s_n)
- if s_n not in self.g:
- self.g[s_n] = math.inf
- if new_cost < self.g[s_n]: # conditions for updating Cost
- self.g[s_n] = new_cost
- self.PARENT[s_n] = s
- # dfs, add new node to the front of the openset
- prior = self.OPEN[0][0]-1 if len(self.OPEN)>0 else 0
- heapq.heappush(self.OPEN, (prior, s_n))
- return self.extract_path(self.PARENT), self.CLOSED
- def main():
- s_start = (5, 5)
- s_goal = (45, 25)
- dfs = DFS(s_start, s_goal, 'None')
- plot = plotting.Plotting(s_start, s_goal)
- path, visited = dfs.searching()
- visited = list(dict.fromkeys(visited))
- plot.animation(path, visited, "Depth-first Searching (DFS)") # animation
- if __name__ == '__main__':
- main()
|