mirror of
https://github.com/zhm-real/PathPlanning.git
synced 2026-08-30 00:50:46 +08:00
66 lines
1.7 KiB
Python
66 lines
1.7 KiB
Python
|
|
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()
|