DoubleArrayTrie(DAT) support prefix search & exact search & multiple pattern match for python implemented by c++
Project description
## DoubleArrayTrie
DoubleArrayTrie(DAT) support prefix search & exact search & multiple pattern match for python implemented by c++
### What’s different
Now greedy search is supported: function search only returns the longest subsequence(greedy search) function maximum_search returns all subsequences
word: she sher shers he to_search: shers
search: {‘entities’: [{‘begin’: 0, ‘end’: 5, ‘entity’: ‘shers’}]}
maximum_search: {‘entities’: [{‘begin’: 0, ‘end’: 3, ‘entity’: ‘she’}, {‘begin’: 0, ‘end’: 4, ‘entity’: ‘sher’}, {‘begin’: 0, ‘end’: 5, ‘entity’: ‘shers’}, {‘begin’: 1, ‘end’: 3, ‘entity’: ‘he’}]}
### C++
#include “double_array_trie.h”
DoubleArrayTrie dat; // load from file dat.load_file(“test.txt”) // or add word dat.add_word(“he”) dat.add_word(“she”) // make base & check dat.make() // greedy_search vector<string> index_s = dat.search(“ushers”) // maximum_search vector<string> index_s = dat.maximum_search(“ushers”)
### Python
# install pip install pydat
# use dat = pydat.Dat() dat.load_file(“test.txt”) dat.add_word(“he”) dat.make() # search dat.search(“ushers”) # greedy_search dat.maximum_search(“ushers”)
### About DAT ![](https://linux.thai.net/~thep/datrie/double.gif)
Definition check[base[s] + c] = s base[s] + c = t
Reference: [An implementation of Double-Array Trie](https://linux.thai.net/~thep/datrie/datrie.html#Double)
### Update Log
#### 2018.09.19 - optimize the algorithm
#### 2018.08.29 - support greedy_search
#### 2018.08.08 - support python3
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pydat-0.7.tar.gz
.
File metadata
- Download URL: pydat-0.7.tar.gz
- Upload date:
- Size: 11.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.9.1 pkginfo/1.4.1 requests/2.18.4 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/2.7.15rc1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0cbd2e287ca690bc9d94aaf7e6e4c2dac3d81c5a497b2967c7ba2d85064b3261 |
|
MD5 | dfdf9053d4954479c8a8c320ac47ab2e |
|
BLAKE2b-256 | a7a8b37b67091d33c83541fa32b2521797f0d6f7ed13bf18fb595ea1671729e5 |