Question: kindly in c++ structure of the code : #include void Create2DArray(int &data, int R, int C) { data = new int* [R]; for (int i

kindly in c++

structure of the code :

#include

void Create2DArray(int &data, int R, int C)

{ data = new int* [R];

for (int i = 0; i < R; i++)

data[i] = new int[C]; }

int CountingApples(int apples, int N, int M)

{ return 0; }

Example 1:

N=4 M=5

10 20 30 40 50

5 5 5 5 5

1 1 1 1 1

3 3 3 3 3

Result is 159

Explanation: it will select the path of going the first row and last column

Example 2:

N=4 M=5

4 -1 30 40 50

1 -1 5 5 5

1 -1 1 1 1

1 1 1 1 1

Result is 11

Explanation: Since some cells are blocked, it will select the path of going the first column down and then the last row left to right

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!