Question: Problem: Your C program needs to compress a text file. The file 'text.txt' contains the text to be compressed and this file contains lower case

Problem:

Your C 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.

You need to create a file called 'out.txt' to store the compressed text.

It is sure that all the letters in 'text.txt' will have one and only one corresponding code in the file 'alpha.txt'.

Your C 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

Note: I don't know what the "tail bit problem" is.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!