Search:

Type: Posts; User: tcao2

Search: Search took 0.10 seconds.

  1. Replies
    9
    Views
    2,444

    Re: Help with solving Maze

    Sorry. Here is the Driver and the support Point class.


    /*
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    */
    package a07;
    import...
  2. Replies
    9
    Views
    2,444

    Re: Help with solving Maze

    Hi there again, thank you for your replies. I've been working on it and the program is almost completed. I'm trying to get it to print out that path that it takes and this is the final part I'm...
  3. Replies
    9
    Views
    2,444

    Re: Help with solving Maze

    OK so I made the traversable() method to check if a move can be made or not. If it is out of bound, return false. If it hits the wall, return false. Otherwise, return true and move. If it moves down,...
  4. Replies
    9
    Views
    2,444

    Re: Help with solving Maze

    Well the first time it reads the file to make sure that the input is correct. The input format is supposed to be an int for row, then an int for column, then the maze. The first scan is to make sure...
  5. Replies
    9
    Views
    2,444

    Help with solving Maze

    Hi there. So I'm supposed to make a program that solve a given maze with "m"(mouse) indicated the starting point, "c" (cheese)indicated the exit, "-" = traversable and "w" == wall. I can't think of a...
Results 1 to 5 of 5