-
Notifications
You must be signed in to change notification settings - Fork 1
/
pile.cpp
157 lines (135 loc) · 3.3 KB
/
pile.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
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
145
146
147
148
149
150
151
152
153
154
155
156
#include "exceptionCooCoo.h"
#include "pile.h"
#include "fabriquedonnee.h"
#include "memento.h"
#include <QMessageBox>
Pile::Pile(unsigned int n)
{
tab = new Donnee*[n];
sommet = -1;
nbMax = n;
gard = new Gardien;
}
Pile::Pile(const Pile& p)
// L'important ici est de reconstruire chaque objet, et pas simplement recopier les pointeurs!
{
tab = new Donnee*[p.nbMax];
sommet = p.sommet;
nbMax = p.nbMax;
gard = p.gard;
FabriqueDonnee* factory = FabriqueDonnee::getInstance();
QString muh;
for (int i=0; i<=sommet; i++)
{
// Recopie en convertissant en QString et en l'envoyant à la factory... Il y a surement plus propre.
tab[i] = factory->creerDonnee(p.tab[i]->toQString());
}
}
Pile::~Pile()
{
for(int i=0; i<=sommet; ++i)
delete tab[i];
delete[] tab;
// Il ne faut pas delete le gardien ici! Voir où
}
void Pile::empiler(Donnee* aDonnee)
{
if ( pilePleine() )
{
nbMax += 10;
Donnee** newtab = new Donnee*[nbMax];
for (int i=0; i<=sommet; i++) newtab[i] = tab[i];
delete[] tab;
tab = newtab;
}
sommet++;
tab[sommet] = aDonnee;
}
Donnee* Pile::depiler()
{
if (!pileVide())
{
sommet--;
return tab[sommet+1];
}
throw ExceptionCooCoo("Pile vide");
}
bool Pile::pileVide() const
{
return(static_cast<int>(sommet)==-1);
}
bool Pile::pilePleine() const
{
return(sommet==nbMax-1);
}
void Pile::clear(){
if(!pileVide()){
for(int i=0; i<=sommet; ++i)
delete tab[i];
sommet=-1;
}
}
Pile* Pile::cloner() const{
// Il suffit d'appeler le constructeur par recopie sur l'objet courant.
// Attention, vérifier à ce que ce constructeur soit correctement implémenté.
return new Pile(*this);
}
void Pile::swap(const int x, const int y){
if (x < this->sommet && y < this->sommet){
Donnee* tmp = (tab[sommet-x]);
this->tab[sommet-x]=tab[sommet-y];
this->tab[sommet-y]=tmp;
}
}
void Pile::sum(const unsigned int x){
if (static_cast<unsigned int>(size()) >= x){
Donnee* res=new Entier(0);
Donnee*tmp;
for(unsigned int i=0; i<x; i++){
tmp=res;
res=*tmp+tab[sommet-i];
delete tmp;
}
empiler(res);
}
else
{
QMessageBox msgBox;
msgBox.setText("Il n'y a pas assez d'éléments dans la pile !");
msgBox.exec();
}
}
void Pile::mean(const unsigned int x){
if (static_cast<unsigned int>(size()) >= x){
Donnee* res=new Entier(0);
Donnee*tmp;
for(unsigned int i=0; i<x; i++){
tmp=res;
res=*tmp+tab[sommet-i];
delete tmp;
}
Donnee * d;
Entier* taille= new Entier(x);
try{
d=*res/taille;
}catch(exception &e) {
QMessageBox msgBox;
msgBox.setText(e.what() );
msgBox.exec();
}
std::cout<<"apres div"<<std::endl;
empiler(d);
}
else
{
QMessageBox msgBox;
msgBox.setText("Il n'y a pas assez d'éléments dans la pile !");
msgBox.exec();
}
}
void Pile::dup(){
if (!pileVide()) empiler(tab[sommet]);
}
void Pile::drop(){
if(!pileVide()) depiler();
}