数据结构-栈与队列--迷宫问题

问题分析

  • 用一个二维数组map表示迷宫的信息,其中‘0’表示可以通过,‘1’表示不可通过**,如下图:
    在这里插入图片描述
  • 对于在一个点上的移动方向,可能是东西南北4方向,或者8方向,如下图:
    移动方向
  • 用一种方法实现找到从出口的到入口的路径。

实现方法

方向设置

  • 我们可以先构建方向结构offsets,用数组offsets\&move[4]或offsets\&move[8]来表示方向
q move[q].a move[q].b
N -1 0
NE -1 1
E 0 1
SE 1 1
S 1 0
SW 1 -1
W 0 -1
NW -1 -1
  • 代码如下:
//方向枚举:东、西、南、北、东北、东南、西北、西南
enum directions{E,W,S,N,NE,SE,NW,SW};

//表示方向
struct offsets
{
    int a, b;
};

//构建移动方向move
//设置方向:选择4方向还是8方向
offsets *move_set(int num = 4)
{
 /*方向表示表
  ___________________________
 | q | move[q].a | move[q].b |
 -----------------------------
 | N |    -1     |     0     |
 | NE|    -1     |     1     |
 | E |     0     |     1     |
 | SE|     1     |     1     |
 | S |     1     |     0     |
 | SW|     1     |    -1     |
 | W |     0     |    -1     |
 | NW|    -1     |    -1     |
 -----------------------------
 */ 
    offsets* move = new offsets[num];
    if (num == 4||num==8)
    {

        move[N].a = -1;
        move[N].b = 0;

        move[E].a = 0;
        move[E].b = 1;

        move[S].a = 1;
        move[S].b = 0;

        move[W].a = 0;
        move[W].b = -1;
    }
    
    if (num == 8)
    {
        move[NE].a = -1;
        move[NE].b = 1;

        move[SE].a = 1;
        move[SE].b = 1;

        move[SW].a = 1;
        move[SW].b = -1;

        move[NW].a = -1;
        move[NW].b = -1;
    }
    return move;
}

路径记录和迷宫地图设置

  • 建立一个Items结构,它包括位置坐标x和y以及下一次该点的移动方向dir
  • 迷宫地图为二维数组,手动输入,代码如下:
//记录路径
struct Items
{
    int x, y, dir;
};

//设置地图
char** map_set(const int width, const int high)
{

    char** map = new char* [width];
    for (int i = 0; i < width; i++)
    {
        map[i] = new char[high];
    }
    for (int i = 0; i < width; i++)
    {
        for (int j = 0; j < high; j++)
        {
            cin >> map[i][j];
        }
    }
    return map;
}

寻找路径

  • 首先我们要用==栈==数据结构来记录路径信息(stack<Items>*ways),这里之所以用指针是方便后续传参;
  • 同时我们构建一个==全为零==的二维数组(char**mark)来记录是否已经通过该点,比如通过x=i,y=j的点,那么mark[i][j]=1
  • 话不多说,直接上代码:
//寻找路径
stack<Items>* Path(const int width,const int high,char **map,const char can_pass,const int start_x,const int start_y, const char end_signal,const int move_kind)
{
    /*参数说明:
    * width:迷宫的长度
    * high:迷宫的宽度
    * **map:二维迷宫的信息
    * can_pass:*map[]中可通过字符
    * start_x:起点横坐标
    * start_y:起点纵坐标
    * end_signal:终点字符标志
    * move_kind:4方向移动或8方向移动
    */

    //获取方向表示
    offsets* move;
    move = move_set(move_kind);

    //记录走过点的信息
    stack<Items>*ways=new stack<Items>;

    //记录该点是否走过
    int** mark = new int* [width];
    for (int i = 0; i < width; i++)
    {
        mark[i] = new int[high];
        for (int j = 0; j < high; j++)
        {
            mark[i][j] = 0;
        }
    }

    //获取起始点
    mark[start_x][start_y] = 1;
    Items temp;
    temp.x = start_x;
    temp.y = start_y;
    temp.dir = E;
    ways->push(temp);
    
    //开始寻找路径
    while (!ways->empty())
    {
        temp = ways->top();
        ways->pop();

        int i = temp.x, j = temp.y, d = temp.dir;
        while (d < move_kind)
        {
            int g = i + move[d].a, h = j + move[d].b;
            if ((g >= 0 && h >= 0) && (g < width && h < high))
            {
                if (map[g][h] == end_signal)
                {
                    cout << "exist!" << endl;
                    // 存储最后一次路径信息
                    Items temp1;
                    temp1.x = i;
                    temp1.y = j;
                    temp1.dir = E;
                    ways->push(temp1);
                    return ways;
                }
                //可以通过,存储该点
                if (map[g][h] == can_pass && mark[g][h]==0)
                {
                    mark[g][h] = 1;
                    temp.x = i;
                    temp.y = j;
                    temp.dir = d + 1;
                    ways->push(temp);
                    i = g;
                    j = h;
                    d = E;
                }
                else d++;
            }
            else d++;
        }
    }
    cout << "not exist!" << endl;
    return ways;
}

代码总览

#include<iostream>
#include<stack>
using namespace std;

//方向枚举:东、西、南、北、东北、东南、西北、西南
enum directions{E,W,S,N,NE,SE,NW,SW};

//表示方向
struct offsets
{
    int a, b;
};

//构建移动方向move
//设置方向:选择4方向还是8方向
offsets *move_set(int num = 4)
{
 /*方向表示表
  ___________________________
 | q | move[q].a | move[q].b |
 -----------------------------
 | N |    -1     |     0     |
 | NE|    -1     |     1     |
 | E |     0     |     1     |
 | SE|     1     |     1     |
 | S |     1     |     0     |
 | SW|     1     |    -1     |
 | W |     0     |    -1     |
 | NW|    -1     |    -1     |
 -----------------------------
 */ 
    offsets* move = new offsets[num];
    if (num == 4||num==8)
    {

        move[N].a = -1;
        move[N].b = 0;

        move[E].a = 0;
        move[E].b = 1;

        move[S].a = 1;
        move[S].b = 0;

        move[W].a = 0;
        move[W].b = -1;
    }
    
    if (num == 8)
    {
        move[NE].a = -1;
        move[NE].b = 1;

        move[SE].a = 1;
        move[SE].b = 1;

        move[SW].a = 1;
        move[SW].b = -1;

        move[NW].a = -1;
        move[NW].b = -1;
    }
    return move;
}

//记录路径
struct Items
{
    int x, y, dir;
};

//设置地图
char** map_set(const int width, const int high)
{

    char** map = new char* [width];
    for (int i = 0; i < width; i++)
    {
        map[i] = new char[high];
    }
    for (int i = 0; i < width; i++)
    {
        for (int j = 0; j < high; j++)
        {
            cin >> map[i][j];
        }
    }
    return map;
}

//寻找路径
stack<Items>* Path(const int width,const int high,char **map,const char can_pass,const int start_x,const int start_y, const char end_signal,const int move_kind)
{
    /*参数说明:
    * width:迷宫的长度
    * high:迷宫的宽度
    * **map:二维迷宫的信息
    * can_pass:*map[]中可通过字符
    * start_x:起点横坐标
    * start_y:起点纵坐标
    * end_signal:终点字符标志
    * move_kind:4方向移动或8方向移动
    */

    //获取方向表示
    offsets* move;
    move = move_set(move_kind);

    //记录走过点的信息
    stack<Items>*ways=new stack<Items>;

    //记录该点是否走过
    int** mark = new int* [width];
    for (int i = 0; i < width; i++)
    {
        mark[i] = new int[high];
        for (int j = 0; j < high; j++)
        {
            mark[i][j] = 0;
        }
    }

    //获取起始点
    mark[start_x][start_y] = 1;
    Items temp;
    temp.x = start_x;
    temp.y = start_y;
    temp.dir = E;
    ways->push(temp);
    
    //开始寻找路径
    while (!ways->empty())
    {
        temp = ways->top();
        ways->pop();

        int i = temp.x, j = temp.y, d = temp.dir;
        while (d < move_kind)
        {
            int g = i + move[d].a, h = j + move[d].b;
            if ((g >= 0 && h >= 0) && (g < width && h < high))
            {
                if (map[g][h] == end_signal)
                {
                    cout << "exist!" << endl;
                    // 存储最后一次路径信息
                    Items temp1;
                    temp1.x = i;
                    temp1.y = j;
                    temp1.dir = E;
                    ways->push(temp1);
                    return ways;
                }
                //可以通过,存储该点
                if (map[g][h] == can_pass && mark[g][h]==0)
                {
                    mark[g][h] = 1;
                    temp.x = i;
                    temp.y = j;
                    temp.dir = d + 1;
                    ways->push(temp);
                    i = g;
                    j = h;
                    d = E;
                }
                else d++;
            }
            else d++;
        }
    }
    cout << "not exist!" << endl;
    return ways;
}

//打印地图且在地图中显示路径
void Show_path(const int width,const int high,char** map, stack<Items>* ways)
{
    if (ways->empty())return;
    while (!ways->empty())
    {
        int x = ways->top().x, y = ways->top().y;
        map[x][y] = '@';
        ways->pop();
    }
    for (int i = 0; i < width; i++)
    {
        for (int j = 0; j < high; j++)
        {
            cout << map[i][j] << "\t";
        }
        cout << "\n";
    }
}

int main()
{
    /*测试数据:(
    10 10
    #S######.#
    ......#..#
    .#.##.##.#
    .#........
    ##.##.####
    ....#....#
    .#######.#
    ....#.....
    .####.###.
    ....#...G#
    */
    int width, high;
    cout << "输入迷宫的长和宽:" << endl;
    cin >> width >> high;

    char** map;
    cout << "输入迷宫信息:" << endl;
    map = map_set(width, high);

    stack<Items>* ways;
    ways = Path(width, high, map, '.', 0, 1, 'G', 4);

    Show_path(width, high, map, ways);

    return 0;
}

上一节:数据结构-栈与队列--队列

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,294评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,780评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,001评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,593评论 1 289
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,687评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,679评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,667评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,426评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,872评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,180评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,346评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,019评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,658评论 3 323
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,268评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,495评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,275评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,207评论 2 352

推荐阅读更多精彩内容