-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContinente.java
executable file
·296 lines (233 loc) · 7.08 KB
/
Continente.java
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
package JavaPraticas.Drafts;
import java.util.*;
/**
* Esta classe serve para gerir um continente com muitos paises
* implementa varias operacoes sobre a classe pais.
*
* @version 2012
*/
public class Continente {
//variaveis de instancia
private ArrayList<FichaPais> paisList;
//Construtores
/**
*construtor vazio
*/
public Continente(){
this.paisList=new ArrayList<FichaPais>();
}
/**
*construtor das partes
*/
public Continente(ArrayList<FichaPais> pais){
this(); //chama o construtor vazio
for (FichaPais po : pais)
this.paisList.add(po.clone());
}
/**
*construtor de copia
*/
public Continente(Continente pais){
paisList = new ArrayList<FichaPais>();
for (FichaPais po : pais.getFichaPais())
paisList.add(po);
}
//METODOS DE INSTANCIA
//os metodos usuais : inserir/listar/procurar/remover/consultar/
/**
*obter uma lista de paises
*/
public List<FichaPais> getFichaPais(){
List<FichaPais> res = new ArrayList<FichaPais>();
for (FichaPais po : this.paisList)
res.add(po.clone());
return res;
}
/**
*Adicionar um pais
*/
public void adPais(FichaPais po){
this.paisList.add(po.clone());
}
/**
*Verifica se um pais existe
*/
public boolean existePais(String cod) {
boolean existe = false;
Iterator<FichaPais> it = paisList.iterator();
while(it.hasNext() && !existe) {
if(it.next().getNomePais().equals(cod)) existe = true;
}
return existe;
}
/**
*Dado o nome de um pais, devolver a sua ficha completa, caso exista
*/
public FichaPais coPais(String cod) {
FichaPais po = null;
boolean enc = false;
Iterator<FichaPais> it = paisList.iterator();
while (it.hasNext() && !enc) {
po = it.next();
if(po.getNomePais().equals(cod)) enc=true;
}
return po.clone();
}
/**
*Remover um pais //ainda nao tenho uma precondicao
*remove todas as ocorrencias
*/
public void removePais(String cod){
FichaPais po = null;
boolean existe = false;
Iterator<FichaPais> it = paisList.iterator(); //iterador
while(it.hasNext() ) {
po = it.next();
if (po.getNomePais().equals(cod)) {
existe=true; it.remove();
}
}
}
/**outros METODOS
*que implementam as operacoes necessarias do problema
*/
/**
*Obter numero total de paises
*/
public int getQt(){
return paisList.size();
}
/**
*lista todos os continentes
*/
public ArrayList<FichaPais> listaContinente() {
ArrayList paisesList = new ArrayList();
String continente = "";
for(Iterator it = paisList.iterator(); it.hasNext();) {
continente = ((FichaPais) it.next()).getContinente();
paisesList.add(continente);
}
return paisesList;
}
/**
* lista todos os paises de um continente
*/
public ArrayList<FichaPais> paisesDeCont(String nome) {
String continente="";
ArrayList<FichaPais> res = new ArrayList<FichaPais>();
for(FichaPais m : paisList)
// if(m.paisContinente(nome).equals(nome)) //tambem da !
if(m.getContinente().equals(nome))
res.add(m.clone());
return res;
}
/**
* lista todas as populacoes de um continente
*/
public ArrayList<FichaPais> populacoesDeCont(String nome) {
int populacao=0;
ArrayList res = new ArrayList();
for(FichaPais m : paisList)
if(m.getContinente().equals(nome))
res.add(m.getPopulacao());
return res;
}
/**
* Determinar o numero de paises de um continente dado
*/
public int numPaises(String nome) {
String continente="";
ArrayList<FichaPais> res = new ArrayList<FichaPais>();
for(FichaPais m : paisList)
if(m.getContinente().equals(nome))
res.add(m.clone());
return res.size();
}
/**
* lista com todos os paises
*/
public ArrayList<FichaPais> listaPaises() {
ArrayList paisesList = new ArrayList();
String pais = "";
for(Iterator it = paisList.iterator(); it.hasNext();) {
pais = ((FichaPais) it.next()).getNomePais();
paisesList.add(pais);
}
return paisesList;
}
/**
* Determinar o somatorio das populacoes de dado continente
*/
public int somaPopulacaoCont(String nome){
String continente="";
int total=0;
ArrayList<FichaPais> res = new ArrayList<FichaPais>();
for(FichaPais m : paisList)
if(m.getContinente().equals(nome))
total+= m.getPopulacao();
return total;
}
/**
*lista com os nomes dos paises com uma populacao superior a um valor dado
*/
public ArrayList<FichaPais> populacaoValor(int valor) {
FichaPais po;
String pais = "";
ArrayList paisesList = new ArrayList();
for(Iterator it = paisList.iterator(); it.hasNext();) {
po = (FichaPais) it.next();
if (po.getPopulacao() > valor ) {
pais=po.getNomePais();
paisesList.add(pais);
}
}
return paisesList;
}
/**
*nomes dos continentes com paises com populacao superior a dado valor
*/
public ArrayList<FichaPais> contPopulacaoValor(int valor) {
FichaPais po;
String continente = "";
ArrayList paisesList = new ArrayList();
for(Iterator it = paisList.iterator(); it.hasNext();) {
po = (FichaPais) it.next();
if (po.getPopulacao() > valor ) {
continente=po.getContinente();
paisesList.add(continente);
}
}
return paisesList;
}
/**
*Dada uma lista de nomes de paises,remover as suas fichas
*/
public void removeListaPaises(List<String> pais){
FichaPais po;
Iterator<String> i;
boolean contem = false;
Iterator<FichaPais> it = paisList.iterator();
po = (FichaPais)it.next();
i=pais.iterator();
while (i.hasNext() ) {
po=it.next();
contem=po.contemPais(i.next());
contem=true;
it.remove();
}
}
//METODOS COMPLEMENTARES
/**
*Representacao como texto
*/
public String toString() {
StringBuilder s = new StringBuilder();
for(FichaPais m : paisList)
s.append(m.toString());
return s.toString();
}
/**
*Clone
*/
public Continente clone() { return new Continente(this); }
}