最近编了个迷宫问题的程序,好像除了问题,苦想了很久,还是没能解决,希望那位想挑战一下自己的行家帮忙看看。。。。谢谢了
#include<stdio.h>#include<malloc.h>#define Init_way 100typedef struct point{ int x; int y; int mark; struct point *south; struct point *west; struct point *east; struct point *north;}point;point room[10][10];//迷宫图typedef struct{...