Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ddebin/zzip
A compression tool based on the Burrows-Wheeler Transform method.
https://github.com/ddebin/zzip
burrows-wheeler-transform bzip2 zip
Last synced: 12 days ago
JSON representation
A compression tool based on the Burrows-Wheeler Transform method.
- Host: GitHub
- URL: https://github.com/ddebin/zzip
- Owner: ddebin
- License: lgpl-2.1
- Created: 2015-07-28T10:50:35.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-19T08:33:24.000Z (about 8 years ago)
- Last Synced: 2024-10-05T00:40:55.040Z (about 1 month ago)
- Topics: burrows-wheeler-transform, bzip2, zip
- Language: C
- Homepage:
- Size: 59.6 KB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Zzip
(original home page at [debin.net/zzip](http://debin.net/zzip/))
A compression tool based on the Burrows-Wheeler Transform method.
Zzip compression algorithm is mainly based on the Burrows-Wheeler Transform method developped by Mike Burrows and David Wheeler.
Here are the different steps:
- RLE packing if necessary
- some transformations for text, multimedia and win32 binary files (eol coding, delta-encoding,...)
- Burrows-Wheeler Transformation, it's a suffix sorting (Bentley-Sedgewick ternary sorting with initial bucket sorting)
- MTF like transformation
- arithmetic coding (two groups, ternary sequence & structured model)Here is a list of its features:
- great compression ratio and good decompression speed
- build/extract/test/list archive files
- built-in multimedia detection/compression
- number of files in one operation is only limited by available memory
- support for file attributes and file date/time stamps
- support for file integrity tests (CRC-32 checksums)
- support for win95 long filenames
- self-extracting archive (.exe file)Current release of Zzip / Zzlib is 0.36c, **04-Jun-2001** (so pretty old stuff !).