2023

Zip File Compressor/Decompressor

A C++ implementation of file compression and decompression algorithms.

C++AlgorithmsCLI

The Problem

Understanding compression algorithms at a low level is essential for systems programming.

Approach

Implemented Huffman coding and LZ77 algorithms from scratch. Built a command-line interface for file operations.

Results

Created a functional compression tool with competitive compression ratios for text files.