-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrie.h
More file actions
84 lines (64 loc) · 1.69 KB
/
trie.h
File metadata and controls
84 lines (64 loc) · 1.69 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
#ifndef TRIE_H_INCLUDED
#define TRIE_H_INCLUDED
#include "helper.h"
#define ALPHABET_LEN 26
#define TRUE 1
#define FALSE 0
typedef int bool;
typedef struct {
bool isEndOfWord;
struct Node *child[ALPHABET_LEN];
} Node;
Node *getNode() {
Node *node = malloc(sizeof(Node));
node->isEndOfWord = FALSE;
for (int i=0; i<ALPHABET_LEN; i++)
node->child[i] = NULL;
return node;
}
int indexOfChar(char c) {
return (int) c - (int) 'a';
}
void insert(Node *root, char *word) {
Node *t = root;
for (int i=0; i<stringLength(word); i++) {
int idx = indexOfChar(word[i]);
if (t->child[idx] == NULL)
t->child[idx] = getNode();
t = t->child[idx];
}
t->isEndOfWord = TRUE;
}
bool search(Node *root, char *word) {
Node *t = root;
for (int i=0; i<stringLength(word); i++) {
int idx = indexOfChar(word[i]);
if (t->child[idx] == NULL)
return FALSE;
t = t->child[idx];
}
return t != NULL && t->isEndOfWord == TRUE;
}
void printTrie(Node *node, char word[], int idx) {
if (node->isEndOfWord == TRUE) {
word[idx] = '\0';
printf("%s\n", word);
}
for (int i=0; i<ALPHABET_LEN; i++) {
if (node->child[i] != NULL) {
word[idx] = i + (int) 'a';
printTrie(node->child[i], word, idx + 1);
}
}
}
void getSuggestions(Node *node, char *word) {
Node *t = node;
for (int i=0; i<stringLength(word); i++) {
int idx = indexOfChar(word[i]);
if (idx > ALPHABET_LEN || t->child[idx] == NULL)
return;
t = t->child[idx];
}
printTrie(t, word, stringLength(word));
}
#endif // TRIE_H_INCLUDED