-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtrie.h
35 lines (28 loc) · 1.25 KB
/
trie.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* trie.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mihykim <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/13 17:25:47 by mihykim #+# #+# */
/* Updated: 2020/04/14 16:14:41 by mihykim ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef TRIE_H
# define TRIE_H
#include <stdbool.h>
#include <stdlib.h>
# define ALPHABETS 26
typedef struct s_node
{
struct s_node *next[26];
bool finish;
} t_node;
typedef t_node *t_trie[26];
t_trie *trie_init(void);
t_node *create_elem(void);
bool trie_insert(t_trie *trie, char *str);
bool trie_find(t_trie *trie, char *str);
void free_trie(t_trie *trie);
#endif