tag | cdf66c6e633bc7ff6b8eb41a41c805c6a261f654 | |
---|---|---|
tagger | The Android Open Source Project <initial-contribution@android.com> | Tue Feb 04 16:02:21 2025 -0800 |
object | 627dea58d55e302266a5fb3399b46b7bf66a709f |
Android Platform 12.1.0 Release 36 (12859805)
commit | 627dea58d55e302266a5fb3399b46b7bf66a709f | [log] [tgz] |
---|---|---|
author | android-build-team Robot <android-build-team-robot@google.com> | Sun Feb 21 00:04:28 2021 +0000 |
committer | android-build-team Robot <android-build-team-robot@google.com> | Sun Feb 21 00:04:28 2021 +0000 |
tree | f36e0f9da5855a1abb42f107a4e0733d79080e65 | |
parent | 326b4618570171b756c724130b54e6f8e66cdcf5 [diff] | |
parent | 202ccc7cdef4b7d5c79dcfcc883083d2a9339a3b [diff] |
Snap for 7160059 from 202ccc7cdef4b7d5c79dcfcc883083d2a9339a3b to sc-v2-release Change-Id: I00373c9f694d70b0bf3e051ac3599c977039b046
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