-
Notifications
You must be signed in to change notification settings - Fork 0
/
fila.h
39 lines (29 loc) · 974 Bytes
/
fila.h
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
#ifndef FILA_H
#define FILA_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <windows.h>
#include <locale.h>
typedef struct Dado{ // <--. Dado
int id; // : '
char nome[15]; // : '
}aviao; // <--' aviao }-------.
// (FORMA)
typedef struct Elemento{ // <--. Elemento <----'
aviao aeronave; // : '
struct Elemento *prox; // : '
}no; // <--' no }-------.
// (FORMA)
typedef struct Lista{ // <--. Lista <------'
no *ini; // : '
no *fim; // : '
int tam; // : '
}fila; // <--' fila
fila *Alocar_Fila();
void Inserir_Aviao(fila *Fila);
void Printar_Design_Aviao(int i);
void Printar_Fila(fila *Fila);
void Animacao_Decolagem(fila *Fila);
void Decolagem_Aviao(fila *Fila_Pista);
#endif