Post Reopened by balpha, Brad Gilbert, Matthew Iselin, Chris Lutz, Alex

    Post Closed as "not a real question" by paxdiablo, Bombe, Kirtan, Brian, redsquare

show/hide this revision's text 6 added 229 characters in body

Here's an interesting problem to solve in minimal amounts of code. I expect the recursive solutions will be most popular.

We have a maze that's defined as a map of characters, where '=' is a wall, a space is a path, '+' is your starting point, and '#' is your ending point. An incredibly simple example is like so:

====
+  =
= ==
=  #
====

Can you write a program to find the shortest path to solve a maze in this style, in as little code as possible?

Bonus points if it works for all maze inputs, such as those with a path that crosses over itself or with huge numbers of branches. The program should be able to work for large mazes (say, 1024x1024 - 1 MB), and how you pass the maze to the program is not important.

UPDATE: The "player" may move diagonally. The input maze will never have a diagonal passage, so your base set of movements will be up, down, left, right. A diagonal movement would be merely looking ahead a little to determine if a up/down and left/right could be merged.

UPDATE #2: Fixed maximum size.

UPDATE #3: Output must be the maze itself with the shortest path highlighted using the asterisk character (' * ').

show/hide this revision's text 5 added 118 characters in body
show/hide this revision's text 4 added 30 characters in body
show/hide this revision's text 3 added 56 characters in body
show/hide this revision's text 2 added 45 characters in body; edited tags; added 3 characters in body; added 8 characters in body
show/hide this revision's text 1 [made Community Wiki]