“RedBlobGames PathFinding” Código de respuesta

RedBlobGames PathFinding

frontier = Queue()
frontier.put(start )
visited = {}
visited[start] = True

while not frontier.empty():
   current = frontier.get()
   for next in graph.neighbors(current):
      if next not in visited:
         frontier.put(next)
         visited[next] = True
Frail Frog

RedBlobGames PathFinding

current = goal 
path = []
while current != start: 
   path.append(current)
   current = came_from[current]
path.append(start) # optional
path.reverse() # optional
Frail Frog

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código