Home Page > > Details

CS101 Assignment ,Java,c++ Programming AssignmentHelp With ,Help With Python,Java Assignment C/C++ Programming| R Programming

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
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.

Contact Us - Email:99515681@qq.com    WeChat:codinghelp
Programming Assignment Help!