| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 711 人关注过本帖, 1 人收藏
标题:求助,超出内存
只看楼主 加入收藏
zpx8179033
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2010-10-27
结帖率:0
收藏(1)
已结贴  问题点数:20 回复次数:2 
求助,超出内存
迷宫有一个入口,一个出口。一个人从入口走进迷宫,目标是找到出口。阴影部分和迷宫的外框为墙,每一步走一格,每格有四个可走的方向,探索顺序为:南、东、北、西。  
输入:输入迷宫数组

输出:若有解,输出从入口到出口的一条路径,否则输出 there is no solution!

例(上图所示的迷宫数组)

输入
4 4
0 0 1 0
0 1 0 1
0 0 0 0
0 1 0 0
输出
<1,1> <2,1> <3,1> <3,2> <3,3> <4,3> <4,4>



#include <stdio.h>
#include <stdlib.h>
#define n 100
#define m 100
typedef struct node
{int row;
int col;
struct node *next;
}mlink;
mlink *stack;
int mazepath()
{int maze[n][m],i,j,x1,y1,x2,y2,a,b;
mlink *p;
scanf("%d %d\n",&a,&b);
for(i=0;i<a;i++)
    {for(j=0;j<b;j++)
        {scanf("%d",&maze[i][j]);}
    }
    x1=0,y1=0;
    x2=a;y2=b;
    stack=NULL;
    p=(mlink*)malloc(sizeof(mlink));
    p->row =x1;p->col =y1;
    p->next =stack;
    stack=p;
    maze[stack->row][stack->col]=1;
    while((stack->row!=x2)||(stack->col!=y2)||(stack!=NULL))
    {if(maze[stack->row +1][stack->col]==0)
        {p=(mlink*)malloc(sizeof(mlink));
        p->row =stack->row +1;p->col =stack->col ;
        p->next =stack;stack=p;
        maze[stack->row ][stack->col ]=1;
        }
    else if(maze[stack->row][stack->col+1]==0)
        {p=(mlink*)malloc(sizeof(mlink));
        p->row =stack->row ;p->col =stack->col+1 ;
        p->next =stack;stack=p;
        maze[stack->row ][stack->col ]=1;
        }
    else if(maze[stack->row -1][stack->col ]==0)
        {p=(mlink*)malloc(sizeof(mlink));
        p->row =stack->row -1;p->col =stack->col ;
        p->next=stack;stack=p;
        maze[stack->row ][stack->col ]=1;
        }
   
    else if(maze[stack->row ][stack->col -1]==0)
        {p=(mlink*)malloc(sizeof(mlink));
        p->row =stack->row ;p->col =stack->col-1 ;
        p->next =stack;stack=p;
        maze[stack->row ][stack->col ]=1;
        }
     else {p=stack;stack=stack->next ;free(p);}
    }
    if(stack==NULL) return(0);
    else return(1);
}

void main()
{int i=0;
mlink *p;
i=mazepath();
if(i=1)
    {p=stack;
    while(p!=NULL)
    {printf("%d,%d",p->row ,p->col );
    p=p->next ;
    }
    printf("\n");
    }
else printf("there is no solution!\n");
}
搜索更多相关主题的帖子: 内存 
2010-10-27 20:00
m21wo
Rank: 10Rank: 10Rank: 10
等 级:青峰侠
威 望:4
帖 子:440
专家分:1905
注 册:2010-9-23
收藏
得分:10 
what  are  you doing?

If You Want Something, Go Get It, Period.
2010-10-28 13:58
爱上对方法国
Rank: 2
等 级:论坛游民
帖 子:12
专家分:10
注 册:2010-10-28
收藏
得分:10 
我认为您应该扩大内存
买根内存条
 好像原来听说过有一种软件可以把硬盘空间虚拟成内存使用,
2010-10-28 17:10
快速回复:求助,超出内存
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.067875 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved