CS101 Assignment#3 Maze Problem


CS101 Assignment#3 Maze Problem
Due date: Thursday, Jan.2, 2020(until20:30)
Problem description:
Amaze is represented by a two dimensional array “maze[10][10]”:
maze[10][10]={{2,3,2,2,2,2,2,2,2,2}, {2,0,0,0,0,0,2,0,0,2}, {2,0,2,0,2,0,0,0,0,2}, {2,0,0,2,0,2,0,0,0,2}, {2,2,0,2,0,2,0,2,0,2}, {2,0,0,0,0,0,0,0,0,2}, {2,2,2,0,2,2,0,2,0,2}
{2,2,2,0,2,2,0,0,0,2}
{2,2,0,2,2,2,0,0,0,2}
{2,2,2,2,2,2,2,2,4,2}};
In “maze[10][10]”,the first“10” denotes the height of the array and the second
denotes the width of the array. As the result, this array has 10 rows and 10 columns that
we can call it 10*10 array. If we want to access the element within this array we only need
to change the coordinate of “maze[10][10]”, for example “maze[3][4]” is the number “0” in
CS101留学生作业代写、Java,c++编程语言作业代做、代做Python,Java实验作业
row4 and column5. Note that, when you access the array, it goes from maze[0][0] to
maze[9][9]. Within this array:
1)The number“2” means the wall that you cannot go through;
2) “3” means the entrance and “4” means the exit;
3)Only the number “0” can be passed.

因为专业,所以值得信赖。如有需要,请加QQ99515681  微信:codehelp

猜你喜欢

转载自www.cnblogs.com/jjatotta/p/12177729.html