Question
Problem (in C language, submit a .c file) 1. Your program needs to compress a text file. The file text.txt contains the text to be
Problem (in C language, submit a .c file) 1. Your program needs to compress a text file. The file text.txt contains the text to be compressed and this file contains lower case letters only. The file alpha.txt contains the code for each letter.
2. You need to create a file called out.txt to store the compressed text.
3. It is sure that all the letters in text.txt will have one and only one corresponding code in the file alpha.txt.
4. Your program needs to achieve the indeed compression and could solve the "tail bit problem". You need to submit a one-page document to introduce how these two problems are solved. To solve the "tail bit problem", you may write some additional information into the output file.
Sample Input & Output The content of text.txt is adbb The content of alpha.txt is a 00 b 01 c 10 d 11 The content of out.txt is 5
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started