write a program to solve a 10x10 maze. prompt the user for an input text file containing ten rows(ten characters on each row). Use following characters in the input file:
* starting point
1 blocked path
0 possible path
E exit point
this program should output coordinates of a possible path (starting with the starting point). If no possible path, indicate so.
Notice: you must use the class “LinkedStack.java” (in chapter3).
you can download the chapter 3 in this website (Samples & Additional Resources > Source Code > download and open the bookfiles > ch03 > LinkedStack.java)