A C implemented Suffix Tree package
Project description
Introduction
This is a Suffix Tree data structure lib implemented in C++, wrapped with python.
Expect for contructing the tree, this lib also provides to construct the query tree for speeding up querying strings.
Install and Build
Install from Pypi
run pip install csuffixtree
Build
You can build this either on linux or windows.
Install Python Package
- Build SuffixTreePyBinding solution in Windows
- On linux you should go to
linuxdirectory, and runmake python - under SuffixTreePy directory. run
python setup.py install
How to use
You can construct a suffix tree in the following way.
from suffixtree import *
tree = SuffixTree(True,["abc","123","321"])
tree.addStrings(["xyz","abcd"])
print(tree.findString("1"))
print(tree.findString("a"))
If you finished inserting strings to a suffix tree, and you want the querying be very fast you can do:
# convert tree to query tree, this release a part of memory
qtree = tree.createQueryTree()
qtree.cacheNodes() # take some time to cache intermediate nodes
qtree.findString("a")
For simplicity you can also write
# do not preserve string
qtree = SuffixQueryTree(False,["abc","abcd","123","321"])
idx = qtree.findStringIdx("abc") # you cannot use findString now
print(idx)
Serialization
SuffixQueryTree can be serialized and deserialized to/from a file a bytes object. For example:
# do not preserve string
qtree = SuffixQueryTree(False,["abc","abcd","123","321"])
idx = qtree.findStringIdx("abc") # you cannot use findString now
print(idx)
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file csuffixtree-0.3.6.tar.gz.
File metadata
- Download URL: csuffixtree-0.3.6.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e340a8a987bca601d6d177e245b63011bd55bef22401a3e320129cd9915eb11
|
|
| MD5 |
3f248248824012f79572023f4be3fbe0
|
|
| BLAKE2b-256 |
23ca5398b1241f1522c10cf2d599286479d37e0d0678d5ccbea41ea963adeefd
|
File details
Details for the file csuffixtree-0.3.6-py3-none-any.whl.
File metadata
- Download URL: csuffixtree-0.3.6-py3-none-any.whl
- Upload date:
- Size: 140.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2ea3e969cce7e75242f4209ca567777bf1ed62ab76b659e182ca46d7d91867f
|
|
| MD5 |
ea91ed056cd92b103dd8b3bf7db8ba11
|
|
| BLAKE2b-256 |
e291cada31e06a10eedf3d8ae386dac712bdf8a40ba2a1f9fbe1748df005a2cd
|