-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPair.h
144 lines (115 loc) · 2.62 KB
/
Pair.h
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#ifndef PAIR_H
#define PAIR_H
// Ïàðàìåòð F - òèï ïåðâîãî ýëåìåíòà ïàðû.
// Ïàðàìåòð S - òèï âòîðîãî ýëåìåíòà ïàðû (ïî óìîë÷àíèþ òàêîé æå êàê è F).
template <class F, class S = F>
class Pair
{
public:
Pair(); // ïóñòîé êîíñòðóêòîð.
Pair(const F, const S); // êîíñòðóêòîð ñ ïåðâûì è âòîðûì ýëåìåíòîì ïàðû.
~Pair(); // äåñòðóêòîð.
F getFirst(); // óñòàíîâèòü ïåðâûé ýëåìåíò ïàðû.
void setFirst(const F); // ïîëó÷èòü ïåðâûé ýëåìåíò ïàðû.
S getSecond(); // ïîëó÷èòü âòîðîé ýëåìåíò ïàðû.
void setSecond(const S); // óñòàíîâèòü âòîðîé ýëåìåíò ïàðû.
F getMax(); // ïîëó÷èòü ìàêñèìàëüíûé ýëåìåíò ïàðû.
private:
F first; // ïåðâûé ýëåìåíò ïàðû.
S second; // âòîðîé ýëåìåíò ïàðû.
};
// Ïóñòîé êîíñòðóêòîð:
template<class F, class S>
Pair<F, S>::Pair()
{
}
// Êîíñòðóêòîð ñ ïåðâûì è âòîðûì ýëåìåíòîì ïàðû:
template<class F, class S>
Pair<F, S>::Pair(const F first, const S second): first(first), second(second)
{
}
// Äåñòðóêòîð:
template<class F, class S>
Pair<F, S>::~Pair()
{
}
// Óñòàíîâèòü ïåðâûé ýëåìåíò ïàðû:
template<class F, class S>
inline F Pair<F, S>::getFirst()
{
return first;
}
// Ïîëó÷èòü ïåðâûé ýëåìåíò ïàðû:
template<class F, class S>
inline void Pair<F, S>::setFirst(F value)
{
first = value;
}
// Ïîëó÷èòü âòîðîé ýëåìåíò ïàðû:
template<class F, class S>
inline S Pair<F, S>::getSecond()
{
return second;
}
// Óñòàíîâèòü âòîðîé ýëåìåíò ïàðû:
template<class F, class S>
inline void Pair<F, S>::setSecond(S value)
{
second = value;
}
// Ïîëó÷èòü ìàêñèìàëüíûé ýëåìåíò ïàðû:
template<class F, class S>
F Pair<F, S>::getMax()
{
throw "Îøèáêà! Ìàêñèìóì ïîêà åù¸ íå ðåàëèçîâàí äëÿ äàííûõ òèïîâ ïàðû!";
}
// Ñïåöèàëèçàöèÿ øàáëîíà ïîä ïàðó öåëûõ ÷èñåë:
template <>
class Pair<int, int>
{
public:
Pair();
Pair(const int first, const int second);
~Pair();
int getFirst();
void setFirst(const int value);
int getSecond();
void setSecond(const int value);
int getMax();
private:
int first;
int second;
};
Pair<int, int>::Pair()
{
}
Pair<int, int>::Pair(const int first, const int second):
first(first), second(second)
{
}
Pair<int, int>::~Pair()
{
}
inline int Pair<int, int>::getFirst()
{
return first;
}
inline void Pair<int, int>::setFirst(int value)
{
first = value;
}
inline int Pair<int, int>::getSecond()
{
return second;
}
inline void Pair<int, int>::setSecond(int value)
{
second = value;
}
int Pair<int, int>::getMax()
{
int retVal;
retVal = first > second ? first : second;
return retVal;
}
#endif