I have a maze file which is like this.
1111111
1001111
1101101
1101001
1100011
1111111
a format $direction indicating the direction
start end label
D D down
L L left
R R right
U U up
Then, I have a dataset indicating the start and end point.
Row Column
start 2 2
end 3 6
How can I record the moving direction from the start to the end like this?
direction row column
2 2
right 2 3
down 3 3
down 4 3
down 5 3
i have use array
array m(i,j)
if m(i,j) = 0 then
row=i;
column=j;
output;
however, it simply just not in the correct moving order.
Thanks if you can help.
Here's one way of doing this. Writing a more generalised maze-solving algorithm using SAS data step logic is left as an exercise for the reader, but this should work for labyrinths.