-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharvore.h
48 lines (39 loc) · 958 Bytes
/
arvore.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
40
41
42
43
44
45
46
47
/* Desenvolvido por: William Rodrigues @ UEM 2020. */
/* Nos da arvore sintatica */
struct no {
int tipo;
int linha;
int coluna;
struct no *l;
struct no *r;
};
union terminal{
int inteiro;
float real;
char* string;
};
struct no_folha {
int tipo;
int linha;
int coluna;
union terminal valor;
};
/* Arvore sintatica (Lista) */
struct arvore_sintatica {
int tipo;
struct no *exp;
char* id;
struct arvore_sintatica* next;
};
/* Criar novo No */
struct no *novo_no(int, struct no *, struct no *, int, int);
struct no *novo_no_folha_int(int, int, int);
struct no *novo_no_folha_float(float, int, int);
struct no *novo_no_folha_id(char*, int, int);
/* Funcoes sobre Arvore Sintatica */
struct arvore_sintatica * novo_arvore_sintatica(int, struct no*, char*, struct arvore_sintatica*);
struct arvore_sintatica * get_inicio_lista_arvore();
/* Print No */
void print_no(struct no *);
/* Global */
struct arvore_sintatica* inicio_lista_arvore;