ASA11599 / a-star

A* algorithm C++ implementation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A* algorithm Build Status

A* search algorithm written in C++ programming language.

  • requires compiler support for C++11

Usage example

#include <iostream>
#include "source/AStar.hpp"

int main()
{
    AStar::Generator generator;
    // Set 2d map size.
    generator.setWorldSize({25, 25});
    // You can use a few heuristics : manhattan, euclidean or octagonal.
    generator.setHeuristic(AStar::Heuristic::euclidean);
    generator.setDiagonalMovement(true);

    std::cout << "Generate path ... \n";
    // This method returns vector of coordinates from target to source.
    auto path = generator.findPath({0, 0}, {20, 20});

    for(auto& coordinate : path) {
        std::cout << coordinate.x << " " << coordinate.y << "\n";
    }
}

Preview

About

A* algorithm C++ implementation.

License:MIT License


Languages

Language:C++ 96.7%Language:CMake 3.3%