Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 884 Bytes

File metadata and controls

16 lines (10 loc) · 884 Bytes

Introduction to Information Theory - Projects


author author

This repository contains the projects made in the Introcution to Information Theory classes.


Here you will find two projects: LZW-compressor and a KNN Classifier, both made in C++.

Execution

For the LZW compressor/decompressor, in the root folder run the command: g++ -Wall main.cpp -o main && ./main

Note: you can change the file to compress/decompress on the encoder.cpp/decoder.cpp files

For the KNN classifier, on the root folder run the command: g++ -Wall main.cpp -o main && ./main