Skip to content

mefchristiansen/Maze-Solver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Maze Solver

See here for a quick write up of the project: https://mefchristiansen.github.io/projects/maze-solver/


A maze solver Java application that automatically generates a random maze, and then proceeds to traverse and solve the maze using a variety of graph traversal algorithms (BFS, DFS, A*). This generation and traversal is visualized using JSwing, and allows the user to interact with the maze, enabling them to choose the size of the maze, the maze start and end points, the solution algorithm, as well as vary the animation speed.

Maze Solver Demo

The application is written in Java 9.

Installation

I used the Gradle build tool to build and run the application.

See here for Gradle installation instructions: https://gradle.org/install/

Run

To build and run the application, run the following command: gradle run