This repository has been archived by the owner on Mar 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercicio_pilha_18.c
204 lines (181 loc) · 3.52 KB
/
exercicio_pilha_18.c
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define bool int
#define true 1
#define false 0
#define MAX 10
typedef struct conteudo{
int n;
}conteudo;
typedef struct nodo{
conteudo c;
struct nodo *next;
}nodo;
typedef struct fila{
nodo *first;
nodo *last;
} fila;
typedef struct stack{
int vetor[MAX];
int bottom;
int top;
int devide;
}stack;
bool P_empty(stack *s);
bool P_full (stack *s);
bool P_push (stack *s, int *c);
void P_pop (stack *s, int *c);
void P_listar(stack *s);
void F_listar(fila *f);
void F_pop(fila *f, conteudo *c);
bool F_push(fila *f, conteudo *c);
bool F_full(fila *f);
bool F_empty(fila *f);
void F_reset(fila *f);
void esvazia(fila *fila_impar,fila *fila_par,stack *s);
int main(){
stack *s = (stack*) malloc(sizeof(stack));
fila *fila_impar = (fila*) malloc(sizeof(fila));
fila *fila_par = (fila*) malloc(sizeof(fila));
conteudo x;
while(scanf("%d",&x.n) && x.n!=0){
if(x.n%2==0){
F_push(fila_par,&x);
}
else{
F_push(fila_impar,&x);
}
};
printf("--FILA PAR--\n");
F_listar(fila_impar);
printf("\n--FILA IMPAR--\n");
F_listar(fila_par);
esvazia(fila_impar,fila_par, s);
printf("\n--PILHA--\n");
P_listar(s);
free(fila_impar);
free(fila_par);
free(s);
return 0;
}
void esvazia(fila *fila_impar,fila *fila_par,stack *s){
conteudo aux_i,aux_p;
int aux;
while(!F_empty(fila_impar) && !F_empty(fila_par)){
F_pop(fila_impar,&aux_i);
if(aux_i.n>0){//se for positivo insere, se não remove da pilha, para ambos os casos, começando pela impar
P_push(s,&aux_i.n);
}
else{
P_pop(s,&aux);
}
F_pop(fila_par,&aux_p);// se for positivo insere, se não, remove da pilha, para ambos os casos
if(aux_p.n>0){
P_push(s,&aux_p.n);
}
else{
P_pop(s,&aux);
}
}
while(!F_empty(fila_impar)){//se ficar mais coisa na pilha impar
F_pop(fila_impar,&aux_i);
if(aux_i.n>0){
P_push(s,&aux_i.n);
}
else{
P_pop(s,&aux);
}
}
while(!F_empty(fila_par)){//se ficar mais coisa na pilha impar
F_pop(fila_par,&aux_p);
if(aux_p.n>0){
P_push(s,&aux_p.n);
}
else{
P_pop(s,&aux);
}
}
}
void P_listar(stack *s){
int aux;
while(!P_empty(s)){
P_pop(s,&aux);
printf(" %d\n",aux);
}
printf("\n");
}
void P_pop (stack *s, int *c){
if(P_empty(s)){
printf("\nEMPTY STACK \n");
return;
}
s->top--;
*c = s->vetor[s->top];
}
bool P_push (stack *s, int *c){
if(P_full(s)){
printf("STACK FULL. EXIT REQUIRED \n");
exit(1);
return false;
}
s->vetor[s->top] = *c;
s->top++;
return true;
}
bool P_empty(stack *s){
return s->top == 0;
}
bool P_full (stack *s){
return s->top == MAX;
}
void F_reset(fila *f){
f->first = NULL;
f->last = NULL;
}
bool F_empty(fila *f){
return f->first==NULL;
}
bool F_full(fila *f){
return false;
}
bool F_push(fila *f,conteudo *c){
nodo *novo = (nodo*) malloc (sizeof(nodo));
if(novo==NULL){
printf("Erro de alocação.");
return false;
}
novo->c = *c;
novo->next = NULL;
if(f->last != NULL){
f->last->next=novo;
}
else{
f->first = novo;
}
f->last = novo;
return true;
}
void F_pop(fila *f, conteudo *c){
nodo *nodo_aux;
if(f->first == NULL){
printf("--EMPTY STACK. CANNOT DELETE--\n");
return;
}
else{
nodo_aux = f->first;
*c = f->first->c;//recebe o conteudo do primeiro item da fila
f->first = f->first->next;
}
if(f->first == NULL){
F_reset(f);
}
free(nodo_aux);
}
void F_listar(fila *f){
nodo *count;
for(count = f->first;count!=NULL;count= count ->next){
printf(" %d",count->c.n );
}
free(count);
}