-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dato.cpp
119 lines (100 loc) · 2.59 KB
/
Dato.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
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
#include "Dato.h"
using namespace tp3;
Dato::Dato(const aed2::Nat& x)
: tipo_( aed2::NAT ), nat_( x )
{}
Dato::Dato(const aed2::String& x)
: tipo_( aed2::STR ), str_( x )
{}
bool Dato::esNat() const
{
return tipo_ == aed2::NAT;
}
bool Dato::esString() const
{
return tipo_ == aed2::STR;
}
aed2::TipoCampo Dato::tipo() const
{
return tipo_;
}
const aed2::Nat& Dato::dameNat() const
{
assert( esNat() );
return nat_;
}
const aed2::String& Dato::dameString() const
{
assert( esString() );
return str_;
}
//~
//~ bool Dato::operator == (const Dato& otro) const
//~ {
//~ return tipo_ == otro.tipo_ and (
//~ ( tipo_ == aed2::NAT and nat_ == otro.nat_ ) or
//~ ( tipo_ == aed2::STR and str_ == otro.str_ )
//~ );
//~ }
//~
//~ bool Dato::operator < (const Dato& otro) const
//~ {
//~ return tipo_ == otro.tipo_ and (
//~ ( tipo_ == aed2::NAT and nat_ < otro.nat_ ) or
//~ ( tipo_ == aed2::STR and str_ < otro.str_ )
//~ );
//~ }
//~
//~ bool Dato::operator > (const Dato& otro) const
//~ {
//~ return tipo_ > otro.tipo_ and (
//~ ( tipo_ == aed2::NAT and nat_ > otro.nat_ ) or
//~ ( tipo_ == aed2::STR and str_ > otro.str_ )
//~ );
//~ }
bool Dato::operator == (const Dato& otro) const
{
return tipo_ == otro.tipo_ and ( esNat() ? nat_ == otro.nat_ : str_ == otro.str_ );
}
bool Dato::operator < (const Dato& otro) const
{
return tipo_ == otro.tipo_ and ( esNat() ? nat_ < otro.nat_ : str_ < otro.str_ );
}
bool Dato::operator > (const Dato& otro) const
{
return tipo_ == otro.tipo_ and ( esNat() ? nat_ > otro.nat_ : str_ > otro.str_ );
}
bool Dato::operator != (const Dato& otro) const
{
return not (*this == otro);
}
Dato Dato::max(const aed2::Conj<Dato> cd){
aed2::Conj<Dato>::const_Iterador itConj = cd.CrearIt();
Dato dMax = itConj.Siguiente();
itConj.Avanzar();
while( itConj.HaySiguiente() ){
if(dMax < itConj.Siguiente() ){
dMax = itConj.Siguiente();
}
itConj.Avanzar();
}
return dMax;
}
Dato Dato::min(const aed2::Conj<Dato> cd){
aed2::Conj<Dato>::const_Iterador itConj = cd.CrearIt();
Dato dMin = itConj.Siguiente();
//~ std::cout << "Dato::min " << dMin.dameNat() << std::endl;
itConj.Avanzar();
while( itConj.HaySiguiente() ){
//~ std::cout << "Dato::min siguiente " << dMin.dameNat() << std::endl;
Dato dMinAux = itConj.Siguiente();
//~ std::cout << "Dato::minAux siguiente " << dMinAux.dameNat() << std::endl;
if( dMin > dMinAux){
//~ std::cout << "Adentro if " << std::endl;
dMin = itConj.Siguiente();
}
itConj.Avanzar();
}
//~ std::cout << "Dato::min " << dMin.dameNat() << std::endl;
return dMin;
}