Rat in a Maze

Backtracking | (Rat in a Maze)

Description:

A Maze is given as N * N binary matrix of blocks where source block is the upper left most block i.e., maze[0][0] and destination block is lower rightmost block i.e., maze[N-1][N-1]. A rat starts from source and has to reach destination . The rat can move only in two directions : forward and down.

In the maze matrix, 0 means the block is dead end and 1 means the block can be used in the path from source and destination. Note that this is a simple version of typical Maze problem . For example , a more complex version can be that the rat can move in 4 directions and a more complex version can be with limited number of moves

Following is an example maze .

006tNc79gy1fobo6bxq0zj30a308r0su.jpg

Gray blocks are dead ends (value = 0).

Following is binary matrix representation of the above maze.

{1, 0, 0, 0}
{1, 1, 0, 1}
{0, 1, 0, 0}
{1, 1, 1, 1}

Following is maze with highlighted solution path .
006tNc79gy1foboa0mn1pj309t08rjrl.jpg

Following is the solution matrix (output of program) for the above input matrx.

{1, 0, 0, 0}
{1, 1, 0, 0}
{0, 1, 0, 0}
{0, 1, 1, 1}
All enteries in solution path are marked as 1.

Backtracking Algorithm

If destination is reached 
    print the  solution matrix 
Else 
    a)  Mark current cell in solution matrix as 1.
    b)  Move forward in horizontal direction and recursively check if this move leads to a solution.
    c)  If the move chosen in the above step doesn't lead to a solution then move down and check if this move leads to a solution .
    d)  If none of the above solutions work then unmark this cell as 0 (BACKTRACK) and return false.

Source Code

#include <iostream>
using namespace std;
//maze size
#define N 4
bool solveMazeUtil(int maze[N][N], int x, int y, int sol[N][N]);

/* A utility function to print solution matrix sol[N][N] */
void printSolution(int sol[N][N])
{
    for(int i = 0; i < N; i++)
    {
        for(int j = 0; j < N; j++)
        {
            cout << " " << sol[i][j];
        }
        cout << endl;
    }
}

/* A utility function to check if x,y is valid index for N * N maze */
bool isSafe(int maze[N][N], int x, int y)
{
    //if (x, y outside maze) return false
    if(x >= 0 && x < N && y >= 0 && y < N && maze[x][y] == 1)
        return true;
    return false;
}

/* This function solves the Maze problem using Backtracking. It mainly uses solveMazeUtil() to solve the problem. It returns false if no path is possible, otherwise return true and prints the path in the form of 1. Note that there may be more than one solutions, this function prints one of the feasible solutions.*/
bool solveMaze(int maze[N][N])
{
    int sol[N][N] = {
        {0, 0, 0, 0},
        {0, 0, 0, 0},
        {0, 0, 0, 0},
        {0, 0, 0, 0}
    };
    if(solveMazeUtil(maze, 0, 0, sol) == false)
    {
        cout << "Solution doesn't exist";
        return false;
    }
    printSolution(sol);
    return true;
}

/* A recursive utility function to solve Maze problem */
bool solveMazeUtil(int maze[N][N], int x, int y, int sol[N][N])
{
    if(x == N-1 && y == N-1)
    {
        sol[x][y] = 1;
        return true;
    }
    
    if(isSafe(maze, x, y) == true)
    {
        // mark x, y as part of solutin path
        sol[x][y] = 1;
        // Move forward in x direction
        if(solveMazeUtil(maze, x+1, y, sol) == true)
            return true;
        // Move down in y direction
        if(solveMazeUtil(maze, x, y+1, sol) == true)
            return true;
        // If none of the above movements work than BACKTRACK:
        // unmark x, y as part of solution path
        sol[x][y] = 0;
        return false;
    }
    return false;
}

int main()
{
    int maze[N][N] = {
        {1, 0, 0, 0},
        {1, 1, 0, 1},
        {0, 1, 0, 0},
        {1, 1, 1, 1}
    };
    
    solveMaze(maze);
    return 0;
}

Output: The 1 values show the path for rat

1 0 0 0
1 1 0 0 
0 1 0 0
0 1 1 1 

源自https://www.geeksforgeeks.org/backttracking-set-2-rat-in-a-maze/

转载于:https://www.cnblogs.com/chunzhulovefeiyue/p/8439881.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值