i want to implement the Recursive backtracker algorithm to solve maze problem, but i cant understand 2.3 Command ("remove the wall between the current cell and the chosen cell") would any help me ?
- Mark the current cell as 'Visited'
- If the current cell has any neighbours which have not been visited
- Choose randomly one of the unvisited neighbours
- add the current cell to the stack
- remove the wall between the current cell and the chosen cell
- Make the chosen cell the current cell
- Recursively call this function
- else
- remove the last current cell from the stack
- Backtrack to the previous execution of this function
Edit In fact I want an algorithm to solve maze problem by using stack.