aboutsummaryrefslogtreecommitdiff
path: root/libraries/libdatrie/README
diff options
context:
space:
mode:
authorfuzzix <fuzzix@gmail.com>2019-03-23 00:58:20 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2019-03-23 00:58:20 +0700
commit13c68301da8e95e8a113d30a43b0f4abfd0b667d (patch)
tree6f53ca73d8cc2b573f68cc6b1146e39780617de1 /libraries/libdatrie/README
parentcc0863a0277dec53f58e3b1748694a9c7635755e (diff)
downloadslackbuilds-13c68301da8e95e8a113d30a43b0f4abfd0b667d.tar.xz
libraries/libdatrie: Added (An Implementation of Double-Array Trie).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/libdatrie/README')
-rw-r--r--libraries/libdatrie/README5
1 files changed, 5 insertions, 0 deletions
diff --git a/libraries/libdatrie/README b/libraries/libdatrie/README
new file mode 100644
index 000000000000..b850b8af35d1
--- /dev/null
+++ b/libraries/libdatrie/README
@@ -0,0 +1,5 @@
+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.