Skip to content

akshataxx/Maze

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Algorithms

Maze game

To compile MazeGenerator, you should run

javac Maze.java MazeGenerator.java

To run maze generation, you should run

java MazeGenerator {height} {width} {filename}

where {height} is the height of maze to generate;

{width} is the width of maze to generate;

{filename} is the name of file to write generated maze to


To compile MazeSolverDFS, you should run

javac Maze.java MazeSolverDFS.java

To run maze generation, you should run

java MazeSolverDFS {filename}

where {filename} is the name of file to read generated maze from.

The solution details will be printed to standard output.

About

Maze Game in java using Depth First Search

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages