Maze Generator
Loading...
1,486
Loading...
Uploader Comments (RyanJW001)
Video Responses
This video is a response to Maze Programming Challenge
see all
All Comments (6)
-
Very impressive!
Could you post your code?
-
Simply awesome :)
-
nice!
Loading...
this is awesome! is there anyway i could download it from you? i've been trying to learn java but there's alot of stuff tutorials don't tell you like WHY did i just put that there? i have noi dea what that does? so i could do good looking at how you scripted it.
clockwise16912 1 year ago
@clockwise16912 Sorry about the late response. I don't actually have the source posted anywhere, but I don't think that it'd be the best for learning from anyway. The list containing the maze grid is defined as a recursive interface that is essentially a stack. I later wrote a new one that actually uses arrays for more efficient code. This one was written before I learned how to use arrays or mutation. The best way to learn, at least for me was to just take things one step at a time.
RyanJW001 1 year ago
You would want to learn either swing or applets to draw things, from there it's just a matter of messing around with things and using google to try and learn what you are looking for. If you want to learn about unexplained lines of code, try googling the methods called or changing the variables around. The point is, look at smaller bits of code. Trying to read and understand even a few thousand lines of code can be hell, even if you are know what individual lines do.
RyanJW001 1 year ago