I have an input file which is a 4X4 matrix, and each item of the matrix is represented by 4 digits 0's and 1's. 1 is closed and 0 means open, the direction is NSEW ( first digit represents North and so on..). I'm trying to recursively find my way from 1 point to another in the maze. Please help :)
Also I am using a stack to store my data, i have coded that up in a .h file along with an overloaded extraction operator so I can do stuff like fout<< Path.Push(data);