-
Notifications
You must be signed in to change notification settings - Fork 2
/
tree.c
263 lines (221 loc) · 5.13 KB
/
tree.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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
/**
* \file
* Source file for the tree methods and bread first search methods to be used in the tree
* \author
* Lutando Ngqakaza <[email protected]>
*/
#include <stdio.h>
#include <stdlib.h>
#include "tree.h"
#include "node.h"
#include "queue.h"
/*
USAGE
initialize the tree with tree_init()
add nodes repeatedly using add_node(n)
then run bfs_tree(v) to do a bfs to get a supporting children count
*/
void init_visited()
{
int k = 0;
for(k = 0; k <128; k++)
{
visited[k] = 0;
}
}
void bfs(struct Node * v)
{
queue_init();
queue_push(v);
bfs_count = bfs_count + 1;
visited[v->id] = bfs_count;
int queue_size = queue_getSize();
while(queue_size > 0)
{
//get all children incident to parent
int kids;
kids = 0;
int id = queue_dequeue();
struct Node *c = nodes[id]->firstchild;
while(c != NULL)
{
if(visited[c->id] == 0);
{
bfs_count = bfs_count + 1;
visited[c->id] = bfs_count;
queue_push(c);
kids++;
}
struct Node *tmp = c;
c = tmp->nextsibling;
}
//printf("Number of kids for Node %d is %d\n",id,kids);
calculated[id] = kids;
queue_size = queue_getSize();
//free(dq);
}
}
void tree_bfs()
{
bfs_count = 0;
init_visited();
int k;
for(k = 0; k < 128; k++)
{
if(nodes[k] != NULL)
{
if(visited[k] == 0)
{
bfs(nodes[k]);
}
}
}
}
void tree_init()
{
root = NULL;
int k = 0;
for(k = 0; k <128; k++)
{
//created[k] = 0;
advertised[k] = -1;
calculated[k] = -1;
nodes[k] = NULL;
}
struct Node *r;
r = (struct Node *)malloc(sizeof(struct Node));
r->id = 0;
r->metric = -1;
r->firstchild = NULL;
r->nextsibling = NULL;
root = r;
nodes[0] = r;
init_visited();
}
struct Node * get_root()
{
return root;
}
void change_node_metric(int id, int metric)
{
if(nodes[id] != NULL)
{
nodes[id]->metric = metric;
}
}
void change_node_parent(int id, int new_parent)
{
//TODO
}
void dfs_clear(struct Node * n)
{
int id = n->id;
bfs_count = bfs_count + 1;
visited[id] = bfs_count;
struct Node * c = n->firstchild;
while(c != NULL)
{
if(visited[c->id] == 0);
{
dfs_clear(c);
}
struct Node *tmp = c;
c = tmp->nextsibling;
}
printf("free-ing %d \n",n->id);
//n->firstchild = NULL;
//n->nextsibling = NULL;
free(n);
nodes[id] = NULL;
}
void clear_tree()
{
init_visited();
bfs_count = 0; //actually for DFS but it doesnt matter used for the same purpose
int k;
for(k = 0; k < 128; k++)
{
if(nodes[k] != NULL)
{
if(visited[k] == 0)
{
printf("%d\n",k);
dfs_clear(nodes[k]);
}
}
}
}
void add_node(int parent, int metric, int id)
{
struct Node *n;
n = (struct Node *)malloc(sizeof(struct Node));
n->id = id;
n->metric = metric;
//printf("------ adding node %d ------\n", id);
nodes[id] = n;
n->firstchild = NULL;
n->nextsibling = NULL;
if(!nodes[parent]) //if nodes[parent] == null or if nodes[parent] does not point to something
{
//create parent placeholder
struct Node *p;
p = (struct Node *)malloc(sizeof(struct Node));
p->id = parent;
p->metric = -1;
p->firstchild = n;
p->nextsibling = NULL;
//{parent,-1, n, NULL}; //add child to parent as well
nodes[parent] = p;
//printf("added to parent placeholder node:%d parent:%d \n", id, parent);
}
else
{
if(!nodes[parent]->firstchild)
{
//add to first child
nodes[parent]->firstchild = nodes[id];
//printf("added to first child node:%d parent:%d \n", id, parent);
}
else
{
//printf("node %d has first child %d, adding to sibling\n",parent, nodes[parent]->firstchild->id);
//add to child's next sibling
struct Node *child = nodes[parent]->firstchild;
//printf("added to next sibling node:%d parent:%d \n", id, parent);
while(child->nextsibling)
{
//printf("sibling %d \n", child->id);
child = child->nextsibling;
}
child->nextsibling = nodes[id];
}
}
}
void print_nodes()
{
int k;
for(k = 0; k < 128; k++)
{
int fc, ns;
if(nodes[k])
{
if(!nodes[k]->firstchild)
{
fc = -1;
}
else
{
fc = nodes[k]->firstchild->id;
}
if(!nodes[k]->nextsibling)
{
ns = -1;
}
else
{
ns = nodes[k]->nextsibling->id;
}
//printf("Node[%d] fc %d ns %d \n",k,fc,ns);
}
}
}