forked from bliksemlabs/rrrr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
trie.c
154 lines (135 loc) · 3.47 KB
/
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
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
/* Copyright 2013 Bliksem Labs. See the LICENSE file at the top-level directory of this distribution and at https://github.com/bliksemlabs/rrrr/. */
/* We took a reference implementation from: https://github.com/chriso/trie.c/ */
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include <string.h>
#include "trie.h"
#include "tdata.h"
uint32_t global_index = 0;
inline trie_t *trie_init(void) {
trie_t *t = (trie_t *) malloc(sizeof(trie_t));
memset(t, 0, sizeof(trie_t));
t->node = 0;
t->index = -1;
return t;
}
void trie_add(trie_t *t, char *word) {
uint32_t c;
while ((c = *word++)) {
assert(c < TRIE_SIZE);
if (t->chars[c] == NULL) {
t->chars[c] = trie_init();
}
t->node = 1;
t = t->chars[c];
}
t->node = 1;
t->index = global_index;
global_index++;
t->chars[TRIE_SENTINEL] = trie_init();
}
uint32_t trie_exists(trie_t *t, char *word) {
uint32_t c;
while ((c = *word++)) {
if (t->chars[c] == NULL) {
return 0;
}
t = t->chars[c];
}
return t->chars[TRIE_SENTINEL] != NULL ? 1 : 0;
}
uint32_t trie_prefix(trie_t *t, char *prefix) {
uint32_t c;
while ((c = *prefix++)) {
if (t->chars[c] == NULL) {
return 0;
}
t = t->chars[c];
}
return t->node;
}
uint32_t trie_complete(trie_t *t, char *prefix, char *suffix) {
uint32_t extra = 0;
uint32_t c;
while ((c = *prefix++)) {
if (t->chars[c] == NULL) {
return -1;
}
t = t->chars[c];
}
c = 0;
while (c < TRIE_SIZE && t->node == 1) {
c++;
if (t->chars[c] != NULL) {
suffix[extra] = c;
t = t->chars[c];
c = 0;
extra++;
}
}
suffix[extra] = 0;
return t->index;
}
uint32_t trie_load(trie_t *t, tdata_t *td) {
trie_t *root = t;
for (uint32_t i = 0; i < td->n_stops; i++) {
char *stopname = tdata_stop_name_for_index(td, i);
uint32_t c, word_len = strlen(stopname);
for (uint32_t j = 0; j < word_len; j++) {
/* lowercase */
c = stopname[j] >= 'A' && stopname[j] <= 'Z' ? stopname[j] | 0x60 : stopname[j];
assert(c < TRIE_SIZE);
if (t->chars[c] == NULL) {
t->chars[c] = trie_init();
}
t->node = 1;
t = t->chars[c];
}
t->index = global_index;
global_index++;
// t->chars[TRIE_SENTINEL] = trie_init();
t = root;
}
return td->n_stops;
}
void trie_strip(trie_t *t, char *src, char *dest) {
if (src == NULL) {
return;
}
if (dest == NULL) {
dest = src;
}
uint32_t c, i = 0, last_break = 0, in_trie = 1;
trie_t *root = t;
while ((c = dest[i++] = *src++)) {
if (c == ' ' || c == '\n' || c == '\t' || c == '\r') {
t = root;
if (in_trie) {
i = last_break;
} else {
in_trie = 1;
last_break = i;
}
continue;
}
if (!in_trie) {
continue;
}
if (t->chars[c] == NULL) {
in_trie = 0;
} else {
t = t->chars[c];
in_trie = 1;
}
}
}
void trie_free(trie_t *t) {
uint32_t i;
for (i = 0; i < TRIE_SIZE; i++) {
if (t->chars[i] != NULL) {
trie_free(t->chars[i]);
}
}
free(t);
}