-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vetor.cpp
139 lines (125 loc) · 2.53 KB
/
Vetor.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
#include <iostream>
#include <stdlib.h>
using namespace std;
template <class Tipo>
class Vetor {
typedef struct tno{
Tipo num;
tno* ant;
tno* prox;
}tno;
tno* inicio;
int size;
public:
Vetor (){
inicio = NULL;
}
void insere(Tipo x){
if(inicio == NULL){
size = 1;
inicio = (tno*)malloc(sizeof(tno));
inicio -> num = x;
inicio -> prox = inicio;
inicio -> ant = inicio;
}
else{
tno* temp = (tno*)malloc(sizeof(tno));
temp -> num = x;
tno* aux = inicio;
if(aux -> num < x){
aux = aux -> prox;
while( aux-> num < x && aux != inicio) aux = aux -> prox;
}
temp -> prox = aux;
(aux -> ant) -> prox = temp;
temp -> ant = aux -> ant;
aux -> ant = temp;
size++;
if(temp-> num < inicio-> num) inicio = temp;
}
}
tno* busca(Tipo x){
if(inicio != NULL){
tno* aux = inicio;
if(aux -> num == x) return aux;
else{
aux = aux -> prox;
while(aux != inicio){
if(aux -> num == x) return aux;
aux = aux -> prox;
}
return NULL;
}
}else return NULL;
}
Tipo remove(Tipo x){
Tipo ret;
tno* aux = busca(x);
if(aux != NULL){
ret = aux->num;
if(aux == inicio){
if(aux-> ant == inicio) inicio = NULL;
else inicio = aux-> prox;
}
aux->ant->prox = aux->prox;
aux->prox->ant = aux->ant;
free(aux);
size--;
}
return ret;
}
Tipo remove_inicio(){
Tipo ret;
if(inicio != NULL){
tno* aux = inicio;
ret = aux->num;
if(inicio->prox == inicio) inicio = NULL;
else{
aux->ant->prox = aux->prox;
aux->prox->ant = aux->ant;
inicio = aux->prox;
}
free(aux);
size --;
}
return ret;
}
Tipo remove_fim(){
Tipo ret;
if(inicio != NULL){
tno* aux = inicio->ant;
ret = aux->num;
if(inicio->prox == inicio) inicio = NULL;
else{
aux->ant->prox = aux->prox;
aux->prox->ant = aux->ant;
inicio = aux->prox;
}
free(aux);
size--;
}
return ret;
}
Tipo& operator[](int i){
tno* aux = inicio;
if(i < size && i >= 0){
for(;i > 0;i--) aux = aux->prox;
}
return aux->num;
}
int tamanho(){
return size;
}
friend ostream &operator<<( ostream &output, const Vetor &fila ) {
if(fila.inicio != NULL){
output << "["<< fila.inicio -> num;
tno* aux = fila.inicio -> prox;
while(aux != fila.inicio) {
output << ", " << aux->num;
aux = aux-> prox;
}
output << "]";
} else output << "[]";
return output;
}
};