0_0_33023767_5131.cpp:9:2: error: stray '#' in program
int x;//位置坐标
^
0_0_33023767_5131.cpp:9:8: error: stray '#' in program
int x;//位置坐标
^
0_0_33023767_5131.cpp:9:14: error: stray '#' in program
int x;//位置坐标
^
0_0_33023767_5131.cpp:10:2: error: stray '#' in program
int step;//走到这一步的步数(我们将时间转换为步数理解,每一步需要一分钟)
^
0_0_33023767_5131.cpp:10:8: error: stray '#' in program
int step;//走到这一步的步数(我们将时间转换为步数理解,每一步需要一分钟)
^
0_0_33023767_5131.cpp:10:14: error: stray '#' in program
int step;//走到这一步的步数(我们将时间转换为步数理解,每一步需要一分钟)
^
0_0_33023767_5131.cpp:15:2: error: stray '#' in program
queue<num> steps;//定义队列存储位置
^
0_0_33023767_5131.cpp:15:8: error: stray '#' in program
queue<num> steps;//定义队列存储位置
^
0_0_33023767_5131.cpp:15:14: error: stray '#' in program
queue<num> steps;//定义队列存储位置
^
0_0_33023767_5131.cpp:16:2: error: stray '#' in program
//BFS是宽度优先,有时候需要队列(先进先出)
^
0_0_33023767_5131.cpp:16:8: error: stray '#' in program
//BFS是宽度优先,有时候需要队列(先进先出)
^
0_0_33023767_5131.cpp:16:14: error: stray '#' in program
//BFS是宽度优先,有时候需要队列(先进先出)
^
0_0_33023767_5131.cpp:17:2: error: stray '#' in program
num start,now,next;//start表示起点,now表示当前的位置,next表示下一步的位置
^
0_0_33023767_5131.cpp:17:8: error: stray '#' in program
num start,now,next;//start表示起点,now表示当前的位置,next表示下一步的位置
^
0_0_33023767_5131.cpp:17:14: error: stray '#' in program
num start,now,next;//start表示起点,now表示当前的位置,next表示下一步的位置
^
0_0_33023767_5131.cpp:18:2: error: stray '#' in program
memset(visit,false,sizeof(visit));//初始化标记(都为false表示未走过)
^
0_0_33023767_5131.cpp:18:8: error: stray '#' in program
memset(visit,false,sizeof(visit));//初始化标记(都为false表示未走过)
^
0_0_33023767_5131.cpp:18:14: error: stray '#' in program
memset(visit,false,sizeof(visit));//初始化标记(都为false表示未走过)
^
0_0_33023767_5131.cpp:19:2: error: stray '#' in program
start.x=n;//初始化起点
^
0_0_33023767_5131.cpp:19:8: error: stray '#' in program
start.x=n;//初始化起点
^
0_0_33023767_5131.cpp:19:14: error: stray '#' in program
start.x=n;//初始化起点
^
0_0_33023767_5131.cpp:20:2: error: stray '#' in program
start.step=0;
^
0_0_33023767_5131.cpp:20:8: error: stray '#' in program
start.step=0;
^
0_0_33023767_5131.cpp:20:14: error: stray '#' in program
start.step=0;
^
0_0_33023767_5131.cpp:21:2: error: stray '#' in program
steps.push(start);//起点入队
^
0_0_33023767_5131.cpp:21:8: error: stray '#' in program
steps.push(start);//起点入队
^
0_0_33023767_5131.cpp:21:14: error: stray '#' in program
steps.push(start);//起点入队
^
0_0_33023767_5131.cpp:22:2: error: stray '#' in program
visit[start.x]=true;//标记起点(表示走过)
^
0_0_33023767_5131.cpp:22:8: error: stray '#' in program
visit[start.x]=true;//标记起点(表示走过)
^
0_0_33023767_5131.cpp:22:14: error: stray '#' in program
visit[start.x]=true;//标记起点(表示走过)
^
0_0_33023767_5131.cpp:23:2: error: stray '#' in program
while(!steps.empty())
^
0_0_33023767_5131.cpp:23:8: error: stray '#' in program
while(!steps.empty())
^
0_0_33023767_5131.cpp:23:14: error: stray '#' in program
while(!steps.empty())
^
0_0_33023767_5131.cpp:24:2: error: stray '#' in program
{
^
0_0_33023767_5131.cpp:24:8: error: stray '#' in program
{
^
0_0_33023767_5131.cpp:24:14: error: stray '#' in program
{
^
0_0_33023767_5131.cpp:25:2: error: stray '#' in program
now=steps.front();//取队列首元素表示当前位置
^
0_0_33023767_5131.cpp:25:8: error: stray '#' in program
now=steps.front();//取队列首元素表示当前位置
^
0_0_33023767_5131.cpp:25:14: error: stray '#' in program
now=steps.front();//取队列首元素表示当前位置
^
0_0_33023767_5131.cpp:25:20: error: stray '#' in program
now=steps.front();//取队列首元素表示当前位置
^
0_0_33023767_5131.cpp:25:26: error: stray '#' in program
now=steps.front();//取队列首元素表示当前位置
^
0_0_33023767_5131.cpp:25:32: error: stray '#' in program
now=steps.front();//取队列首元素表示当前位置
^
0_0_33023767_5131.cpp:25:38: error: stray '#' in program
now=steps.front();//取队列首元素表示当前位置
^
0_0_33023767_5131.cpp:26:2: error: stray '#' in program
steps.pop();//首元素出列
^
0_0_33023767_5131.cpp:26:8: error: stray '#' in program
steps.pop();//首元素出列
^
0_0_33023767_5131.cpp:26:14: error: stray '#' in program
steps.pop();//首元素出列
^
0_0_33023767_5131.cpp:26:20: error: stray '#' in program
steps.pop();//首元素出列
^
0_0_33023767_5131.cpp:26:26: error: stray '#' in program
steps.pop();//首元素出列
^
0_0_33023767_5131.cpp:26:32: error: stray '#' in program
steps.pop();//首元素出列
^
0_0_33023767_5131.cpp:26:38: error: stray '#' in program
steps.pop();//首元素出列
^
0_0_33023767_5131.cpp:27:2: error: stray '#' in program
if(now.x==k)//如果当前位置就是牛的位置(得到结果)输出步数,退出调用函数
^
0_0_33023767_5131.cpp:27:8: error: stray '#' in program
if(now.x==k)//如果当前位置就是牛的位置(得到结果)输出步数,退出调用函数
^
0_0_33023767_5131.cpp:27:14: error: stray '#' in program
if(now.x==k)//如果当前位置就是牛的位置(得到结果)输出步数,退出调用函数
^
0_0_33023767_5131.cpp:27:20: error: stray '#' in program
if(now.x==k)//如果当前位置就是牛的位置(得到结果)输出步数,退出调用函数
^
0_0_33023767_5131.cpp:27:26: error: stray '#' in program
if(now.x==k)//如果当前位置就是牛的位置(得到结果)输出步数,退出调用函数
^
0_0_33023767_5131.cpp:27:32: error: stray '#' in program
if(now.x==k)//如果当前位置就是牛的位置(得到结果)输出步数,退出调用函数
^
0_0_33023767_5131.cpp:27:38: error: stray '#' in program
if(now.x==k)//如果当前位置就是牛的位置(得到结果)输出步数,退出调用函数
^
0_0_33023767_5131.cpp:28:2: error: stray '#' in program
{
^
0_0_33023767_5131.cpp:28:8: error: stray '#' in program
{
^
0_0_33023767_5131.cpp:28:14: error: stray '#' in program
{
^
0_0_33023767_5131.cpp:28:20: error: stray '#' in program
{
^
0_0_33023767_5131.cpp:28:26: error: stray '#' in program
{
^
0_0_33023767_5131.cpp:28:32: error: stray '#' in program
{
^
0_0_33023767_5131.cpp:28:38: error: stray '#' in program
{
^
0_0_33023767_5131.cpp:29:2: error: stray '#' in program
printf("%d\n",now.step);
^
0_0_33023767_5131.cpp:29:8: error: stray '#' in program
printf("%d\n",now.step);
^
0_0_33023767_5131.cpp:29:14: error: stray '#' in program
printf("%d\n",now.step);
^
0_0_33023767_5131.cpp:29:20: error: stray '#' in program
|