summaryrefslogtreecommitdiff
path: root/Year_1/Programming_1/ex1_03_12_19.cc
blob: 8f9bed7247e34f2b810e8bb2c204e561c970f4f9 (plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
#include <iostream>

using namespace std;
/*
2 3 4 5
1 2 3 4
1 2 3 0

3 x 4

5 2 1 0
*/

template<int N, int M>
bool* func(unsigned int (&K)[N][M], double (&D)[M]) {
    bool* A = new bool[M];
    for(int i = 0; i < M; ++i) 
        A[i] = false;

    for(int i = 0; i < M; ++i) {
        int sum = 0;
        for(int j = 0; j < N; ++j) {
            sum+=K[j][i];
        }

        if(static_cast<double>(sum)/static_cast<double>(M) > D[i]) {
            A[i] = true;
        }
    }

    return A;
}

int main() {
    // TODO: test
    unsigned int A[3][4] = {
        {2, 3, 4, 5},
        {1, 2, 3, 4},
        {1, 2, 3, 0}
    };   

    double D[4] = {5., 2.2, 1.1, 0.50};

    auto a = func(A, D);
    for(int i = 0; i < 4; ++i) 
        cout << a[i] << ' ';

    cout << endl;
    
    unsigned int A2[3][4] = {
        {2, 3, 4, 5},
        {1, 2, 0, 4},
        {1, 2, 0, 0}
    };   

    double D2[4] = {5., 2.2, 15.1, 18.50};

    auto a2 = func(A2, D2);
    for(int i = 0; i < 4; ++i) 
        cout << a2[i] << ' ';

    cout << endl;

    return 0;
}