Your c program needs to compress a text file the file


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.

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: Your c program needs to compress a text file the file
Reference No:- TGS02898366

Expected delivery within 24 Hours