01 Coding a WINZIP file compressor in C

Опубликовано: 15 Апрель 2026
на канале: dr Jonas Birch
6,339
435

We'll code a file compressor which will divide a file into 32 bit integers and create a list with unique entries. Then we'll swap each 32 bit block for a 16 bit index, and compress consecutive similar blocks even more.

This is a very fun project so let's get started.
JB

References

1. Become a channel member and get several benefits, check out:
   / @dr-jonas-birch  

2. My new premium course at great discount, check it out:
https://courses.doctorbirch.com/2/f0d...

Table of Contents

00:00:00 Introduction
00:00:16 The algorithm explained
00:06:53 Project setup
00:23:49 List datatype
00:50:01 Pretty printer
01:53:47 Sorting a list