File compression library built in C++ using LZ77 back-reference encoding and Huffman coding
Stars
0
Forks
0
Watchers
0
Open Issues
0
Overall repository health assessment
No package.json found
This might not be a Node.js project
24
commits
Merge branch 'main' of https://github.com/pranavmaske03/myzip
efc19e3View on GitHubfix: add error handling, edge case guards and doc comments across all headers
2eb02fcView on GitHubrefactor: optimize Huffman and LZ77 class structures and member functions
27532d4View on GitHubfix: cap lookahead window size in LZ77 token generation
ad62126View on GitHubrefactor: replace duplicate tree traversal functions with single templated buildCodes
231c325View on GitHubfix: resolve critical bugs in LZ77, Huffman and IOStream
e171d5eView on GitHubfix: add inline to all out-of-class header definitions
34c1b6eView on GitHubImplement full file compression and decompression (locally)
a58688cView on GitHubread compressed file and generate tokens from decoded data
b67e587View on GitHubImplement compression logic and generate compressed file
5c880bdView on GitHub