├── AUTHORS ├── CHANGES ├── CMakeLists.txt ├── LICENSE ├── README.md ├── THIRD-PARTY-NOTICES ├── VERSION ├── bsc-m03.cpp ├── common ├── LICENSE ├── platform.h └── rangecoder.h ├── hutucker ├── LICENSE ├── README ├── example.c ├── hu-tucker.c └── hu-tucker.h ├── libsais ├── CHANGES ├── LICENSE ├── VERSION ├── libsais.c ├── libsais.h ├── libsais16.c └── libsais16.h ├── m03_model.h ├── m03_parser.h ├── m03_tables.h └── ska_sort └── ska_sort.hpp /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/CHANGES -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/THIRD-PARTY-NOTICES -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.5.5 -------------------------------------------------------------------------------- /bsc-m03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/bsc-m03.cpp -------------------------------------------------------------------------------- /common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/common/LICENSE -------------------------------------------------------------------------------- /common/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/common/platform.h -------------------------------------------------------------------------------- /common/rangecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/common/rangecoder.h -------------------------------------------------------------------------------- /hutucker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/hutucker/LICENSE -------------------------------------------------------------------------------- /hutucker/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/hutucker/README -------------------------------------------------------------------------------- /hutucker/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/hutucker/example.c -------------------------------------------------------------------------------- /hutucker/hu-tucker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/hutucker/hu-tucker.c -------------------------------------------------------------------------------- /hutucker/hu-tucker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/hutucker/hu-tucker.h -------------------------------------------------------------------------------- /libsais/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/libsais/CHANGES -------------------------------------------------------------------------------- /libsais/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/libsais/LICENSE -------------------------------------------------------------------------------- /libsais/VERSION: -------------------------------------------------------------------------------- 1 | 2.10.3 2 | -------------------------------------------------------------------------------- /libsais/libsais.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/libsais/libsais.c -------------------------------------------------------------------------------- /libsais/libsais.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/libsais/libsais.h -------------------------------------------------------------------------------- /libsais/libsais16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/libsais/libsais16.c -------------------------------------------------------------------------------- /libsais/libsais16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/libsais/libsais16.h -------------------------------------------------------------------------------- /m03_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/m03_model.h -------------------------------------------------------------------------------- /m03_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/m03_parser.h -------------------------------------------------------------------------------- /m03_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/m03_tables.h -------------------------------------------------------------------------------- /ska_sort/ska_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlyaGrebnov/bsc-m03/HEAD/ska_sort/ska_sort.hpp --------------------------------------------------------------------------------