Looking for a recursive example a maze traversal for vb.net

Dargoth

Newcomer
Joined
Sep 25, 2003
Messages
1
Location
Fort Hood, Texas
Hello All :)

I was reading a recursive algorithm problem that peeked my interest and after several failed attempts I have decided to ask you guys(and Gals) if any one has an (working)example of the code so I may see where my logic is falling short. This is the format the maze was supposed to be in:

# # # # # # # # # # # #
# . . . # . . . . . . #
. . # . # . # # # # . #
# # # . # . . . . # . #
# . . . . # # # . # . .
# # # # . # . # . # . #
# . . # . # . # . # . #
# # . # . # . # . # . #
# . . . . . . . . # . #
# # # # # # . # # # . #
# . . . . . . # . . . #
# # # # # # # # # # # #

You can cut and paste this in note pad and it will look correct.

I appreciate any guidence you Guru's can give a confussed soul :D
 
Perhaps you can show us what you have so far as a starting point. I'm a little hesitant on just giving you some code as this seems like a homework problem (matter of fact it was one of my homework problems last year).
 
Back
Top