KO
|
EN
gitlite — search
Search
#golang
#csharp
#android
#python
#game
#java
#http
#boilerplate
#cli
#unity
#vue
#docker
A-star
★ 35
Open GitHub ↗
A*(A-star) pathfinding algorithm in C++
Download README (.md)
Explore Similar Repositories
compose-path-finding
:
A simple path finding visualizer mobile app to demonstrate the use of Jetpack Compose UI toolkit in Android.
puzzl
:
:game_die: An intelligent version of the sliding-puzzle game for your terminal built in golang
Pathfinding
:
Pathfinding algorithms.
cJumpPointSearch
:
A C implementation of the Jump Point Search pathfinding algorithm
three-pathfinding-3d
:
pathfinding-algorithm fork from three-pathfinding and support 3d
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
A-star
?
Download (.md)
# A-star A* pathfinding algorithm (a.k.a. A* search algorithm) written in C++ This is an widely used pathfinding and searching algorithm; learn more about A* at [Wikipedia](https://en.wikipedia.org/wiki/A*_search_algorithm). OpenCV is not necessarily required, provided that you have found another way to convert input images into arrays which have the same format used in the example. Since there might still be some problems in my implementation, so please feel free to give me any advice! ### Map samples [Map 50px 1](assets/Map50_1.bmp) | [Map 50px 2](assets/Map50_2.bmp) | [Map 50px 3](assets/Map50_3.bmp) ------------ | ------------- | -------------  |  |  ### Previews > **DO NOT** use images below as input images, they have been scaled up for better visual effect. Input | Output (Original) | Output (Improved, see [#1](https://github.com/SumiMakito/A-star/issues/1)) ------------ | -------------|------------  |  |   |  |   |  |  ### Special thanks Thanks [@HjalteBested](https://github.com/HjalteBested) for pointing out the problem and giving me some useful advice on how to improve the algorithm in the issue [#1](https://github.com/SumiMakito/A-star/issues/1). ### License Beloved **MIT** ``` MIT License Copyright (c) 2017 Makito Sumi Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ```