This repository has been archived by the owner on Aug 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCParty.cc
111 lines (53 loc) · 1.62 KB
/
CParty.cc
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
#include "CParty.h"
#include <iostream>
using namespace std;
//constructeur
CParty::CParty(int pNb){
mNbPath=pNb;
mListPath=new CChromosome[mNbPath];
}
CParty::CParty(int pNb,int pNbVilles){
// ce constructeur est celui que l'on utilise dans le projet, il sert a créer
// une liste de chemins (individus), ces chemins sont eux meme construits
// aléatoirement lors de leur affectation (chromosome)
mNbPath=pNb;
mListPath=new CChromosome[mNbPath];
for(int i=0;i<mNbPath;i++)
mListPath[i]=CChromosome(pNbVilles);
}
CParty::CParty(const CParty &pCChromosome){ // recopie
mNbPath=pCChromosome.mNbPath;
for(int i=0;i<mNbPath;i++)
mListPath[i]=pCChromosome.mListPath[i];
}
//destructeur
CParty::~CParty(){ // destructeur
delete [] mListPath;
}
//methode
void CParty::print(){ // afficheur
for(int i=0;i<mNbPath;i++)
mListPath[i].print();
}
int CParty::getNbPath(){ // accesseur
return mNbPath;
}
CChromosome& CParty::getList(int i){ // accesseur
return mListPath[i];
}
CParty& CParty::operator=(const CParty &pPL){ // surchargeur
if(this!=&pPL){
mNbPath=pPL.mNbPath;
delete [] mListPath;
mListPath=new CChromosome[mNbPath];
for(int i=0;i<mNbPath;i++)
mListPath[i]=pPL.mListPath[i];
}
return *this;
}
void CParty::setPathList(int pPath,int pPos,int pObj){ // accesseur
mListPath[pPath].setPath(pPos,pObj);
}
void CParty::setNewPath(int pNumPath){ // accesseur
mListPath[pNumPath].setNewChromosome();
}