摘要: #include int map[5][5]={0,1,0,0,0, 0,1,0,1,0, 0,0,0,0,0, 0,1,1,1,0, 0,0,0,1,0}; int mx[4]={0,0,1,-1}; int my[4]={1,-1,0,0}; int q; typedef struct node { int x; int y; int s... 阅读全文