A Pathfinding In C Command Line

Recreation of my A* pathfinding algorithm except this time in C! Instead of a graphics interface this is meant to run on the command line and analyze a maze given by a .txt file
Alternatives To A Pathfinding In C Command Line
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Ascii_art653
6 months agogpl-2.0C
Real-Time ASCII Art Rendering Library
Unitypcss494
4 years ago1mitC#
Nvidia's PCSS soft shadow algorithm implemented in Unity
Debroglie327
2 months ago8August 28, 20226mitC#
DeBroglie is a C# library implementing the Wave Function Collapse algorithm with support for additional non-local constraints, and other useful features.
Csharprenderer158
8 years agomitC#
C#/.NET DirectX11 based graphics framework for rapid visual effects and algorithms prototyping
Wechart146
3 years ago3July 30, 20181JavaScript
Create all the [ch]arts by cax or three.js - Cax 和 three.js 创造一切图[表]
Bitmap122
2 years ago3C++
C++ Bitmap Library
Hilma83
2 months ago1otherC++
library to generate 2D/3D geometries
Meshsimplify71
2 years ago5C++
Mesh Simplification based on edge-collapse algorithm
Awesome_computer_science57
2 months agompl-2.0
The complete syllabus of Computer Science and Engineering. Roadmap, Checklist for Beginners.
Computer Graphics53
2 years ago1mitC++
Beginners Guide to Computer Graphics in C/C++, OpenGL, JavaFX
Alternatives To A Pathfinding In C Command Line
Select To Compare


Alternative Project Comparisons
Readme

A* Pathfinding in C (command line)

Recreation of my A* pathfinding algorithm except this time in C! Instead of a graphics interface this is meant to run on the command line and analyze a maze given by a .txt file. '#' characters are walls, 'O' characters are open, 'S' is the start and 'G' is the end. You can make any maze which is rectangular and this program will create a new file in the same directory called "nameSolution.txt". I included two test mazes named "maze.txt" and "sampleMaze2.txt".

I also time the performance to show the efficiency of my algorithm :)

How to run:

  • open command line
  • go to directory of executable (cd)
  • Make sure the maze file is in the same directory as the executable
  • type "c-pathfinding maze.txt" to run and analyze "maze.txt" file
  • you may analyze any file by typing name of executable SPACE name of mazefile.txt (or directory + name)

capture

Note: If you try to run executable without command line, it will close automatically because no file argument is given

a project by Devon Crawford.

Popular Graphics Projects
Popular Algorithms Projects
Popular Graphics Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
C
Command Line
Algorithms
Graphics
Pathfinding