Implementation of Huffman Encoding and Decoding using C. Uses greedy algorithm with binary tree construction based on character frequencies.
- Builds Huffman Tree dynamically
- Generates prefix codes
- Encodes input data
- Decodes encoded data
- Data Structures (Trees, Linked Lists)
- Greedy Algorithms
- Memory Management in C
Completed (Basic Implementation)