Answered step by step
Verified Expert Solution
Question
1 Approved Answer
USING C++: Consider an m by n array A . We want to reshape the array in a one dimensional array B of size m*n
USING C++:
Consider an m by n array A. We want to reshape the array in a one dimensional array B of size m*n, so that the first row of A is copied over to B, then the second row and so on (in general B[k]=A[i][j], where k=n*i+j .)
Write a template function that takes as arguments the following:
- a dynamic two dimensional array
- the number of rows of the array
- the number of columns of the array
The function should return the a one dimensional array containing all the elements of the original array arranged as discussed above. The function prototype is given below:
templateeType* reshape(eType**, int, int);
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started