-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasd.c
More file actions
120 lines (108 loc) · 2.79 KB
/
asd.c
File metadata and controls
120 lines (108 loc) · 2.79 KB
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
#include "asd.h"
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
AsdTree *asd_new(const char *label)
{
AsdTree *ret = calloc(1, sizeof(AsdTree));
assert(ret != NULL);
ret->label = strdup(label);
return ret;
}
AsdTree *asd_new_ownership(const char *label)
{
AsdTree *ret = calloc(1, sizeof(AsdTree));
assert(ret != NULL);
ret->label = label;
return ret;
}
void asd_free(AsdTree *tree)
{
if (tree != NULL)
{
for (int i = 0; i < tree->number_of_children; i++)
{
asd_free(tree->children[i]);
}
free(tree->children);
free(tree->label);
free(tree);
}
else
{
fprintf(stderr, "Erro: %s recebeu parâmetro tree = %p.\n", __FUNCTION__, tree);
}
}
void asd_add_child(AsdTree *tree, AsdTree *child)
{
if (tree != NULL && child != NULL)
{
tree->number_of_children++;
tree->children = realloc(tree->children, tree->number_of_children * sizeof(AsdTree *));
tree->children[tree->number_of_children - 1] = child;
}
else
{
fprintf(stderr, "Erro: %s recebeu parâmetro tree = %p / %p.\n", __FUNCTION__, tree, child);
}
}
static void _asd_print(FILE *foutput, AsdTree *tree, int profundidade)
{
if (tree != NULL)
{
fprintf(foutput, "%d%*s: Nó '%s' tem %hu filhos:\n", profundidade, profundidade * 2, "", tree->label,
tree->number_of_children);
for (int i = 0; i < tree->number_of_children; i++)
{
_asd_print(foutput, tree->children[i], profundidade + 1);
}
}
else
{
fprintf(stderr, "Erro: %s recebeu parâmetro tree = %p.\n", __FUNCTION__, tree);
}
}
void asd_print(AsdTree *tree)
{
FILE *foutput = stderr;
if (tree != NULL)
{
_asd_print(foutput, tree, 0);
}
else
{
fprintf(stderr, "Erro: %s recebeu parâmetro tree = %p.\n", __FUNCTION__, tree);
}
}
static void _asd_print_graphviz(FILE *foutput, AsdTree *tree)
{
int i;
if (tree != NULL)
{
fprintf(foutput, " %ld [ label=\"%s\" ];\n", (long)tree, tree->label);
for (i = 0; i < tree->number_of_children; i++)
{
fprintf(foutput, " %ld -> %ld;\n", (long)tree, (long)tree->children[i]);
_asd_print_graphviz(foutput, tree->children[i]);
}
}
else
{
fprintf(stderr, "Erro: %s recebeu parâmetro tree = %p.\n", __FUNCTION__, tree);
}
}
void asd_print_graphviz(AsdTree *tree)
{
FILE *foutput = stdout;
if (tree != NULL)
{
fprintf(foutput, "digraph grafo {\n");
_asd_print_graphviz(foutput, tree);
fprintf(foutput, "}\n");
}
else
{
fprintf(stderr, "Erro: %s recebeu parâmetro tree = %p.\n", __FUNCTION__, tree);
}
}