├── LICENSE ├── Makefile.am ├── autogen.sh ├── configure.ac ├── s2sbuild.cpp ├── s2ssearch.cpp ├── ssv.cpp ├── ssv.hpp ├── tx.cpp ├── tx.hpp ├── tx.pc.in ├── txbuild.cpp ├── txlist.cpp ├── txsearch.cpp └── txsearch_mmap.cpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillbig/tx-trie/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillbig/tx-trie/HEAD/Makefile.am -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillbig/tx-trie/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillbig/tx-trie/HEAD/configure.ac -------------------------------------------------------------------------------- /s2sbuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillbig/tx-trie/HEAD/s2sbuild.cpp -------------------------------------------------------------------------------- /s2ssearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillbig/tx-trie/HEAD/s2ssearch.cpp -------------------------------------------------------------------------------- /ssv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillbig/tx-trie/HEAD/ssv.cpp -------------------------------------------------------------------------------- /ssv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillbig/tx-trie/HEAD/ssv.hpp -------------------------------------------------------------------------------- /tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillbig/tx-trie/HEAD/tx.cpp -------------------------------------------------------------------------------- /tx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillbig/tx-trie/HEAD/tx.hpp -------------------------------------------------------------------------------- /tx.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillbig/tx-trie/HEAD/tx.pc.in -------------------------------------------------------------------------------- /txbuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillbig/tx-trie/HEAD/txbuild.cpp -------------------------------------------------------------------------------- /txlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillbig/tx-trie/HEAD/txlist.cpp -------------------------------------------------------------------------------- /txsearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillbig/tx-trie/HEAD/txsearch.cpp -------------------------------------------------------------------------------- /txsearch_mmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillbig/tx-trie/HEAD/txsearch_mmap.cpp --------------------------------------------------------------------------------