tag | 9be3d4df7dc027e2da21a958a12aaa54bf57fbd1 | |
---|---|---|
tagger | The Android Open Source Project <initial-contribution@android.com> | Tue Feb 04 16:04:02 2025 -0800 |
object | 38080cd9fd6c2bc70dd18365b543617f6abbfd82 |
Android Platform 13.0.0 Release 28 (12859820)
commit | 38080cd9fd6c2bc70dd18365b543617f6abbfd82 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Sat Oct 09 05:04:05 2021 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Sat Oct 09 05:04:05 2021 +0000 |
tree | f36e0f9da5855a1abb42f107a4e0733d79080e65 | |
parent | d32fec97266244d97379b4e46ff4d56bbb20981b [diff] | |
parent | c90fe3d1e4f69b3aebd24764868797e76f12dba4 [diff] |
Snap for 7809064 from c90fe3d1e4f69b3aebd24764868797e76f12dba4 to tm-release Change-Id: I1951c2bcc6a5c6728df44046f872d230e5854f40
marisa-trie
MARISA: Matching Algorithm with Recursively Implemented StorAge
0.2.6
Matching Algorithm with Recursively Implemented StorAge (MARISA) is a static and space-efficient trie data structure. And libmarisa is a C++ library to provide an implementation of MARISA. Also, the package of libmarisa contains a set of command line tools for building and operating a MARISA-based dictionary.
A MARISA-based dictionary supports not only lookup but also reverse lookup, common prefix search and predictive search.
The biggest advantage of libmarisa is that its dictionary size is considerably more compact than others. See below for the dictionary size of other implementations.
Implementation | Size (bytes) | Remarks |
---|---|---|
darts-clone | 376,613,888 | Compacted double-array trie |
tx-trie | 127,727,058 | LOUDS-based trie |
marisa-trie | 50,753,560 | MARISA trie |
You can get the latest version via git clone
. Then, you can generate a configure
script via autoreconf -i
. After that, you can build and install libmarisa and its command line tools via configure
and make
. For details, see also documentation in docs
.
$ git clone https://github.com/s-yata/marisa-trie.git $ cd marisa-trie $ autoreconf -i $ ./configure --enable-native-code $ make $ make install