CSU Banner

CS 163/164, Fall 2017

Programming Assignment - P12

Recursion

Due Monday, Nov. 27th at 06:00 pm

Late Tuesday, Nov. 28th at 08:00am


Objectives of this Assignment

This lab has the goal of teaching you how to:
  1. Read data into a two dimensional array
  2. Use recursion to implement a depth first search.
  3. implement an interface given to you, and
  4. find your way recursively!

Description

Recursion is handy for solving problems involving choosing one of several alternatives at each step. For this assignment, you will use recursion to solve mazes!

Each maze will be specified by a text file containing 2 integers that specify number of rows and number of columns on the first line, then # marks for barriers, one S for the starting position, and one G for the goal position. As the maze is solved, your code will leave breadcrumbs, indicated by . characters. Here is an example maze.

##########
#        #
#   ###  #
#   #  G #
#   #    #
#        #
#        #
#  #######
#   S    #
##########

After finding a solution path, the result might look like this.

##########
# .......#
# . ### .#
# . #  G.#
# . #  ..#
# .    ..#
# .    ..#
# .#######
# ..S    #
##########

The sequence of moves, with U, R, D, and L indicating Up, Right, Down, and Left moves, and G indicating the Goal is reached, is

LLUUUUUUURRRRRRDDDDDLUUUG

Notice that this is not the shortest path to the goal. The search method we will be implementing is a "depth-first search", and is not likely to find the shortest path.

Code Requirements

For this assignment, you will code a single class called Maze that implements the IMaze interface found here. The main method of Maze will get the filename from the command line, call the methods described in the interface to solve the maze, and print the resulting map and the solution path.

Remember, we will not call your main method, instead we will call the methods directly

Recursive Algorithm

The findPath method described in the interface will call a private helper method called recPath. The signature of recPath is:

        private String recPath(char[][] maze, int r, int c);
        /*
         * Precondition - maze array initialized to a valid maze
         * Postcondition - returns the path from the location r,c to the goal
         * Postcondition - '.' set from location r,c in the maze to the goal
         * Requirement - Implemented as a recursive method that finds a path
         *               from position (row,col) to the goal position,
         *               marked by 'G'
         */

recPath must implement a recursive algorithm for finding a path to the goal from the position (row,col) given as an argument.

Examples

To solve the above maze, make a file with the following contents.

10 10
##########
#        #
#   ###  #
#   #  G #
#   #    #
#        #
#        #
#  #######
#   S    #
##########

Say it is saved in a file named maze1. The result of compiling and running your Maze class must be exactly as shown below.

> javac Maze.java
> java Maze maze1
##########
# .......#
# . ### .#
# . #  G.#
# . #  ..#
# .    ..#
# .    ..#
# .#######
# ..S    #
##########
LLUUUUUUURRRRRRDDDDDLUUUG

More example mazes can be found in mazeSmall and maze2.


Submit Maze.java to the Checkin tab


CS Banner
CS Building