slackbuilds_ponce/libraries/libdatrie/README
fuzzix 13c68301da libraries/libdatrie: Added (An Implementation of Double-Array Trie).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2019-03-23 00:58:20 +07:00

5 lines
250 B
Text

libdatrie - An Implementation of Double-Array Trie
Trie is a kind of digital search tree, an efficient indexing method
in which search time is independent of database size. It only takes
O(m) search time, where m is the length of the search string.