-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfree_trie.c
43 lines (38 loc) · 1.21 KB
/
free_trie.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* free_trie.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mihykim <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/14 13:24:24 by mihykim #+# #+# */
/* Updated: 2020/04/17 12:00:48 by mihykim ### ########.fr */
/* */
/* ************************************************************************** */
#include "trie.h"
void free_elem(t_node *node)
{
int i;
if (node == NULL)
return ;
i = 0;
while (i < ALPHABETS)
{
free_elem(node->next[i]);
i++;
}
free(node);
}
void free_trie(t_trie *trie)
{
int i;
if (trie == NULL || *trie == NULL)
return ;
i = 0;
while (i < ALPHABETS)
{
free_elem((*trie)[i]);
i++;
}
free(trie);
}