-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.c
87 lines (74 loc) · 1.97 KB
/
main.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jko <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/12 16:21:01 by jko #+# #+# */
/* Updated: 2020/04/17 12:01:39 by mihykim ### ########.fr */
/* */
/* ************************************************************************** */
#include "trie.h"
#include <stdio.h>
static void print_str(t_node *node, char buf[4096], int index)
{
if (!node)
return ;
if (node->finish)
{
buf[index] = 0;
printf("%s\n", buf);
}
for (int i = 0; i < 26; ++i) {
buf[index] = i + 'a';
print_str(node->next[i], buf, index + 1);
}
}
void print_trie(t_trie *trie)
{
char buf[4096];
for (int i = 0; i < 4096; ++i) {
buf[i] = 0;
}
if (!trie)
{
printf("error\n");
return ;
}
for (int i = 0; i < 26; ++i) {
buf[0] = i + 'a';
print_str((*trie)[i], buf, 1);
}
}
int main(void)
{
char *strs[100] = {
"abc",
"z",
"abz",
"bb",
"f",
"qwertyuiopasdfghjklzxcvbnm"
"zzzz",
"wnoane",
"",
"acccc",
0
};
t_trie *trie = trie_init();
print_trie(trie);
for (int i = 0; strs[i]; ++i) {
printf("insert result = %d\n", trie_insert(trie, strs[i]));
print_trie(trie);
printf("\n");
}
for (int i = 0; strs[i]; ++i) {
printf("%s find result = %d\n", strs[i], trie_find(trie, strs[i]));
printf("\n");
}
free_trie(trie);
trie = 0;
system("leaks a.out > leaks_result && cat leaks_result | grep leaked");
return (0);
}