About 50 results
Open links in new tab
  1. Implementation of A* algorithm in C++ - Code Review Stack Exchange

    Oct 14, 2019 · Implementation of A* algorithm in C++ Ask Question Asked 6 years, 5 months ago Modified 6 years, 5 months ago

  2. 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 aren't sure what …

  3. algorithm - A* Search on 'Map of Romania' (Russel and Norvig ch3) in ...

    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: "Artificial …

  4. A* algorithm on a 2D vector of enum - Code Review Stack Exchange

    Mar 6, 2023 · A* algorithm on a 2D vector of enum Ask Question Asked 3 years ago Modified 3 years ago

  5. algorithm - C#: A* pathfinding - performance and simplicity - Code ...

    Jul 15, 2020 · Yet another implementation of A* pathfinding. It is focused on: Performance (both speed and memory allocations). Readability and simplicity. Well defined objects and methods. Accordance …

  6. java - 8puzzle solver using A* - Code Review Stack Exchange

    That's gonna take long. This program solves 8 puzzle game (mini version of 15 puzzle) using A* algorithm. Program consists of 2 parts: Board.java - which serves as a representation for the board (...

  7. A* algorithm in C++ - Code Review Stack Exchange

    Jul 24, 2015 · A* algorithm in C++ Ask Question Asked 10 years, 8 months ago Modified 10 years, 7 months ago

  8. "Simple" pathfinding algorithm - Code Review Stack Exchange

    Dec 20, 2015 · I decided to write a pathfinding algorithm in order to expose myself to the world of pathfinding and for me to further understand more advanced algorithms such as A*. I chose C# due …

  9. beginner - A* Algorithm in C# for pathfinding 2D tile grid - Code ...

    Jun 25, 2018 · This algorithm executes beautifully but if 100+ agents are getting new paths simultaneously there is a significant drop in frame rate. Where should I start with optimizing? I use 4 …

  10. 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 ...