Thursday, August 1, 2013

File Compressor in C++

Hello friends, Here is the code of File Compressor...

The main features of this program are:

  1. Works like note pad (i.e create, open, save , text document )
  2. Can generate random bits of data
  3. Can compress binary data (i.e If there are 10 or more 1’s consecutively replace them +10+, +11+, ... +20+, …..  OR in case of 0’s replace them -10-, -11-,-12-, ....... -20-, ....
  4. Can uncompressed data (i..e replace +10+ with '1111111111' , -10-, '000000000' , ....... )
  5. GUI interface,........
Pictorial View:






Codding:
   

No comments:

Post a Comment