This is a pair of program that will generate a maze with multple levels and sovle it.
"generator.c" is the program used to generate the maze. User need to input the diamension of the maze, number of levels and the method of the maze generator, here only provide prim method, backtracking method and mixed method(prim and backtracking). The generated result will print on the screen and save in the txt file called "maze.txt".
"solver.c" is the program to solve the maze generated by "generator.c". The sovled reult will also print out on the screen and the text file called "maze_solution.txt".