About 65,600 results
Open links in new tab
  1. A* implementation of 8 puzzle - Code Review Stack Exchange

    Oct 7, 2017 · I'm trying to implement 8 puzzle problem using A Star algorithm. The goal state is: 0 1 2 3 4 5 6 7 8 and the heuristic used is Manhattan distance. Here's the code ...

  2. algorithm - A* Search on 'Map of Romania' (Russel and Norvig …

    Jun 10, 2017 · I've implemented A* search using Python 3 in order to find the shortest path from 'Arad' to 'Bucharest'. The graph is the map of Romania as found in chapter 3 of the book: …

  3. A-star pathfinding algorithm - Code Review Stack Exchange

    I'm working on a school project where I need to implement the pathfinding algorithm. The requirements are that it needs to find the path in at most a few seconds and ideally in less than …

  4. Implementation of A* algorithm in C++ - Code Review Stack …

    Oct 14, 2019 · 8 I have implemented the A-Star path finding algorithm for a 2D grid. The function returns a list of positions of an acceptable path. main.cpp :

  5. a star - C++ implementation of the A* pathfinding algorithm

    Jul 9, 2018 · The algorithm itself is showed at the bottom. If you don't want to go through all of the code, feel free to mainly look at the A* algorithm itself and only reference to the rest if you …

  6. A* (A-Star) pathfinding algorithm with dynamic node generation in ...

    Aug 25, 2017 · I wrote code which implements the A* algorithm in Python. A* is a shortest path algorithm which resembles Dijkstra's Algorithm, but includes an estimator to guide the search. …

  7. java - A* search algorithm - Code Review Stack Exchange

    Jan 1, 2014 · NodeData stores all information of the node needed by the AStar algorithm. This information includes the value of g, h, and f. However, the value of all 3 variables are …

  8. Memory efficient A* (AStar) Algorithm - Code Review Stack …

    Jun 24, 2015 · Memory efficient A* (AStar) Algorithm Ask Question Asked 10 years, 5 months ago Modified 10 years, 5 months ago

  9. Python A Star with fewest turns and shortest path variations

    class MinTurns(AStar): """A star algorithm for navigating a map in the fewest turns. Given start and end points for a grid style maze, outputs a tuple containing; a list of coordinates, number …

  10. A* pathfinding algorithm too slow - Code Review Stack Exchange

    Jun 26, 2019 · I'm trying to make a pathfinding algorithm for my project. I need it for a simulation and I need it to be fast!!! I watched a few videos explaining the algorithm online and came up …