-
Notifications
You must be signed in to change notification settings - Fork 0
/
Task4.cpp
79 lines (65 loc) · 1.77 KB
/
Task4.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#include <iostream>
#include <vector>
#include <list>
#include <string>
using namespace std;
template<typename T>
void print(T& cont) {
for(auto it : cont)
cout << it << " ";
cout << endl;
}
// Клаcc-функция увеличения всех элементов
// контейнера на какое-то заданное число.
// Работает и с массивами встр. типов.
// Помимо operator() я сделал еще конструктор
// с теми же параметрами для того, чтобы можно
// было вызывать то действие вот так:
// IncShift(arr, val);
class IncShift {
public:
IncShift() {}
template<typename T, typename Tval>
IncShift(T& arr, Tval shift_val = 0) {
for(auto& it : arr)
it += shift_val;
}
template<typename T, typename Tval>
void operator() (T& arr, Tval shift_val = 0) {
for(auto& it : arr)
it += shift_val;
}
};
int main() {
IncShift make_inc_shift;
vector<int> v = { 1, 2, 3, 4, 5 };
list<int> l = { 1, 2, 3, 4, 5 };
string s = "abcde";
int i[5] = { 1, 2, 3, 4, 5 };
double d[5] = { 1.1, 2.1, 3.1, 4.1, 5.1 };
cout << "vector:\n";
make_inc_shift(v, 1);
print(v);
cout << endl;
cout << "list:\n";
make_inc_shift(l, 2);
print(l);
cout << endl;
cout << "string:\n";
make_inc_shift(s, 3);
print(s);
cout << endl;
cout << "int array:\n";
make_inc_shift(i, 1);
print(i);
cout << endl;
cout << "double array:\n";
make_inc_shift(d, 0.9);
print(d);
cout << endl;
cout << "double array modified by constructor call:\n";
IncShift(d, 0.9);
print(d);
cout << endl;
return 0;
}