-
Notifications
You must be signed in to change notification settings - Fork 0
/
Arquivo_de_voo.cpp
129 lines (97 loc) · 2.19 KB
/
Arquivo_de_voo.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
/*
* Arquivo_de_voo.cpp
*
* Created on: 18 de Dez de 2010
* Author: pedroborges
*/
#include "Arquivo_de_voo.h"
using namespace std;
Plano_de_voo PNULL=Plano_de_voo(0,0,0, 0, 0, 0,0,0,0,0, NULL, "","", NULL, 0);
/**
* creates a new flight archive
* @name Arquivo_de_voo
*/
Arquivo_de_voo::Arquivo_de_voo():arquivo(PNULL){
}
void Arquivo_de_voo::insert(Plano_de_voo & a){
if(arquivo.isEmpty()){
arquivo.insert(a);
}
else{
Plano_de_voo pesq=arquivo.find(a);
if(pesq==PNULL){
arquivo.insert(a);
}
}
}
void Arquivo_de_voo::remove(Plano_de_voo & a){
Plano_de_voo pesq=arquivo.find(a);
if(!(pesq==PNULL)){
arquivo.remove(a);
}
}
vector<Plano_de_voo> Arquivo_de_voo::pesquisa(horas_data d1, horas_data d2){
vector<Plano_de_voo> planos;
BSTItrIn<Plano_de_voo> itr(arquivo);
while((! itr.isAtEnd()) ){
Plano_de_voo actual=itr.retrieve();
if(actual.get_parte()){
if(actual.getPartida()>d2){
return planos;
}
if(!(actual.getPartida()<d1)){
planos.push_back(actual);
}
}
else{
if(actual.getChegada()>d2){
return planos;
}
if(!(actual.getChegada()<d1)){
planos.push_back(actual);
}
}
itr.advance();
}
return planos;
}
vector<Plano_de_voo> Arquivo_de_voo::pesquisa(horas_data d1, horas_data d2, Companhia_aerea * comp){
vector<Plano_de_voo> planos;
BSTItrIn<Plano_de_voo> itr(arquivo);
while((! itr.isAtEnd()) ){
Plano_de_voo actual=itr.retrieve();
if(actual.get_parte()){
if(actual.getPartida()>d2){
return planos;
}
if(!(actual.getPartida()<d1) && actual.getCompanhia()==comp){
planos.push_back(actual);
}
}
else{
if(actual.getChegada()>d2){
return planos;
}
if(!(actual.getChegada()<d1) && actual.getCompanhia()==comp){
planos.push_back(actual);
}
}
itr.advance();
}
return planos;
}
vector<Plano_de_voo> Arquivo_de_voo::pesquisa(Companhia_aerea * comp){
vector<Plano_de_voo> planos;
BSTItrIn<Plano_de_voo> itr(arquivo);
while((! itr.isAtEnd()) ){
Plano_de_voo actual=itr.retrieve();
if(actual.getCompanhia()==comp){
planos.push_back(actual);
}
itr.advance();
}
return planos;
}
Arquivo_de_voo::~Arquivo_de_voo() {
// TODO Auto-generated destructor stub
}