-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.cpp
52 lines (48 loc) · 1.1 KB
/
input.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include<stdlib.h>
int **inputFunction(const char* filename)//Returns the inputArray
{
int M,N,i,j; //M is coloumns N is rows
fstream input;
input.open(filename, ios::in);
input>>M;
input>>N;
int** inputArray = new int*[M];
for(i=0;i<M;i++)
{
inputArray[i]=new int[N];
}
for(int j=0;j<N;j++)
{
for(int i=0;i<M;i++)
{
input>>inputArray[i][j];
}
}
return inputArray;
}
int **getSumArray(int **inputArray, int M, int N, int K)//returns 2D array of size MXN with each number being sum of the i,j to i+k,j+k the submatrix
{
int i,j,x,y,sum;
int **sumArray;
sumArray=(int**)calloc(M, sizeof(int*));
for(i=0;i<M;i++)
{
sumArray[i]=(int*)calloc(N, sizeof(int));
}
for(i=0;i<M-K+1;i++)
{
for(j=0;j<N-K+1;j++)
{
sum=0;
for(x=i;x<i+K;x++)
{
for(y=j;y<j+K;y++)
{
sum=sum+inputArray[x][y];
}
}
sumArray[i][j]=sum;
}
}
return sumArray;
}