数据结构试验二:(2)(顺序栈) 迷宫问题

完整代码:

#include<iostream>

#include<stdio.h>

#include<stdlib.h>

#include<malloc.h>

#define Max 200

using namespace std;

typedef struct{

    int i;

    int j;

    int di;

}Box;

typedef struct{

    Box data[Max];

    int top;

}SqStack;

 

void InitStack(SqStack*&s){   //初始化

    s=(SqStack*)malloc(sizeof(SqStack));

    s->top=-1;

}

 

bool StackEmpty(SqStack * s){  //判断栈是否为空

    return(s->top==-1);

}

 

bool Push(SqStack *& s,Box e){  //入栈 注意:此时e的类型一定要是Box

    if(s->top==Max-1)

        return false;

    s->top++;

    s->data[s->top]=e;

    return true;

}

 

bool Pop(SqStack *& s,Box &e){  //出栈

 

    if(s->top==-1)

        return false;

    e=s->data[s->top];

    s->top--;

    return true;

}

 

bool GetTop(SqStack*s,Box &e){  //取栈顶元素

    if(s->top==-1)

        return false;

    e=s->data[s->top];

    return true;

}

 

void DestroyStack(SqStack*&s){  //销毁栈

    free(s);

}

 

 

bool mgpath(int xi,int yi,int xe,int ye,int M,int N){

    Box path[Max],e;

    int i,j,di,il,jl,k;

    bool find;

    SqStack *st;

    InitStack(st);

    e.i=xi;

    e.j=yi;

    e.di=-1;

    Push(st,e);

    int mg[M][N];

    for(int i=0;i<M;i++)

        for(int j=0;j<N;j++)

            cin>>mg[i][j];

    mg[xi][yi]=-1;     //一定要初始化!

    while(!StackEmpty(st)){  //若走到终点,则输出完整路径

        GetTop(st,e);

        i=e.i;

        j=e.j;

        di=e.di;

        if(i==xe&&j==ye){

            k=0;

            while(!StackEmpty(st)){

                Pop(st,e);

                path[k++]=e;

            }

            while(k>=1){

                k--;

                cout<<path[k].i<<" "<<path[k].j;

                cout<<"\n";

            }

            DestroyStack(st);

            return true;

        }

        find=false;

        while(di<4&&!find){

            di++;

            switch(di){

                case 0:il=i-1;jl=j;break;

                case 1:il=i;jl=j+1;break;

                case 2:il=i+1;jl=j;break;

                case 3:il=i;jl=j-1;break;

            }

            if(mg[il][jl]==0)

                find=true;

        }

        if(find){

            st->data[st->top].di=di;

            e.i=il;

            e.j=jl;

            e.di=-1;

            Push(st,e);

            mg[il][jl]=-1;

        }

        else{

            Pop(st,e);

            mg[e.i][e.j]=0;  //表示该位置已经走过

        }

    }

    DestroyStack(st);

    return false;

}

 

int main (){

    int M,N;

    cin>>M>>N;

    if(!mgpath(1,1,M-2,N-2,M,N))

        cout<<"该迷宫问题没有解!";

    return 1;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值